Skip to content

Commit

Permalink
Add website_url to tests (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
whobubble authored Feb 5, 2024
1 parent 0db9ed7 commit 420914a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/chartmogul/customer.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ describe('Customer', () => {
name: 'Adam Smith',
email: 'adam@smith.com',
country: 'US',
city: 'New York'
city: 'New York',
website_url: 'https://chartmogul.com'
/* eslint-enable camelcase */
};

Expand All @@ -32,7 +33,8 @@ describe('Customer', () => {
state: '',
country: 'US',
zip: '',
data_source_uuid: 'ds_e243129a-12c0-4e29-8f54-07da7905fbd1'
data_source_uuid: 'ds_e243129a-12c0-4e29-8f54-07da7905fbd1',
website_url: 'https://chartmogul.com'
/* eslint-enable camelcase */
});

Expand Down Expand Up @@ -275,7 +277,8 @@ describe('Enrichment#Customer', () => {
'chartmogul-url': 'https://app.chartmogul.com/#customers/244461-Adam_Smith',
'billing-system-type': 'ImportApi',
currency: 'USD',
'currency-sign': '$'
'currency-sign': '$',
website_url: 'https://chartmogul.com'
/* eslint-enable camelcase */
});

Expand Down

0 comments on commit 420914a

Please sign in to comment.