Skip to content

Commit

Permalink
test: update common.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauravudia committed Mar 5, 2024
1 parent 13a13d9 commit df4fb1c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions test/integrations/destinations/movable_ink/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,16 @@ const commonProperties = {
image_url: 'https://www.website.com/product/path.webp',
};

const customProperties = {
key1: 'value1',
key2: true,
key3: ['value3'],
key4: { key5: { key6: 'value6' } },
};

const trackTestProperties = {
'Product Added': commonProperties,
'Product Viewed': commonProperties,
'Product Added': { ...commonProperties, ...customProperties },
'Product Viewed': { ...commonProperties, ...customProperties },
'Order Completed': {
checkout_id: '70324a1f0eaf000000000000',
order_id: '40684e8f0eaf000000000000',
Expand Down

0 comments on commit df4fb1c

Please sign in to comment.