-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
483 changed files
with
9,441 additions
and
4,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
describe('Before Onboarding', () => { | ||
before(() => { | ||
cy.request({ | ||
method: 'PATCH', | ||
url: '/api/projects/1/', | ||
body: { completed_snippet_onboarding: false }, | ||
headers: { Authorization: 'Bearer e2e_demo_api_key' }, | ||
}) | ||
}) | ||
|
||
after(() => { | ||
cy.request({ | ||
method: 'PATCH', | ||
url: '/api/projects/1/', | ||
body: { completed_snippet_onboarding: true }, | ||
headers: { Authorization: 'Bearer e2e_demo_api_key' }, | ||
}) | ||
}) | ||
|
||
it('Navigate to /products when a product has not been set up', () => { | ||
cy.visit('/project/1/data-management/events') | ||
|
||
cy.get('[data-attr=top-bar-name] > span').contains('Products') | ||
}) | ||
|
||
it('Navigate to a settings page even when a product has not been set up', () => { | ||
cy.visit('/settings/user') | ||
|
||
cy.get('[data-attr=top-bar-name] > span').contains('User') | ||
|
||
cy.visit('/settings/organization') | ||
|
||
cy.get('[data-attr=top-bar-name] > span').contains('Organization') | ||
}) | ||
}) |
Oops, something went wrong.