Skip to content

Commit

Permalink
feat: #2011 Setting up Debit & integrate API in Dev Portal Setting bi…
Browse files Browse the repository at this point in the history
…lling tab (#2071)
Cuong Vu authored Jul 16, 2020
1 parent eab694e commit d3df4f4
Showing 28 changed files with 844 additions and 159 deletions.
3 changes: 2 additions & 1 deletion packages/developer-portal/config.example.json
Original file line number Diff line number Diff line change
@@ -12,5 +12,6 @@
"cognitoUserPoolId": "",
"chatbotAppId": "",
"marketplaceUrl": "",
"cypressBaseUrl": "http://localhost:8080"
"cypressBaseUrl": "http://localhost:8080",
"debitApiKey": ""
}
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ exports[`ContactDeveloperSection should match snapshot with gutter 1`] = `
>
NEED HELP?
</Component>
<Memo()
<Component
footer={
<Unknown
dataTest="btn-close-modal"
@@ -91,7 +91,7 @@ exports[`ContactDeveloperSection should match snapshot with gutter 1`] = `
</Component>
</Component>
</Component>
</Memo()>
</Component>
</Fragment>
`;

@@ -106,7 +106,7 @@ exports[`ContactDeveloperSection should match snapshot without gutter 1`] = `
>
NEED HELP?
</Component>
<Memo()
<Component
footer={
<Unknown
dataTest="btn-close-modal"
@@ -186,6 +186,6 @@ exports[`ContactDeveloperSection should match snapshot without gutter 1`] = `
</Component>
</Component>
</Component>
</Memo()>
</Component>
</Fragment>
`;
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`AccountStatusSection should match snapshot 1`] = `
<Component>
<Component
id="status"
name="status"
type="hidden"
/>
<Component>
<b>
ACCOUNT STATUS:
</b>
<i>
pending
</i>
</Component>
</Component>
`;

exports[`AccountStatusSection should match snapshot with hasReapitAccountsRef is no 1`] = `
<Component>
<Component
id="status"
name="status"
type="hidden"
/>
<Component>
<b>
ACCOUNT STATUS:
</b>
<i>
pending
</i>
</Component>
</Component>
`;

exports[`AccountStatusSection should match snapshot with status !== pending 1`] = `
<Component>
<Component
id="status"
name="status"
type="hidden"
/>
</Component>
`;
Loading

0 comments on commit d3df4f4

Please sign in to comment.