-
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.
Merge branch 'master' into fix-async-calculation
- Loading branch information
Showing
205 changed files
with
3,337 additions
and
2,277 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
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') | ||
}) | ||
}) |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ describe('Signup', () => { | |
cy.get('[data-attr=signup-email]').type('[email protected]').should('have.value', '[email protected]') | ||
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678') | ||
cy.get('[data-attr=signup-start]').click() | ||
cy.get('[data-attr=signup-first-name]').type('Jane').should('have.value', 'Jane') | ||
cy.get('[data-attr=signup-name]').type('Jane Doe').should('have.value', 'Jane Doe') | ||
cy.get('[data-attr=signup-organization-name]').type('Hogflix Movies').should('have.value', 'Hogflix Movies') | ||
cy.get('[data-attr=signup-role-at-organization]').click() | ||
cy.get('.Popover li:first-child').click() | ||
|
@@ -39,18 +39,53 @@ describe('Signup', () => { | |
cy.get('.text-danger').should('not.contain', 'Password must be at least 8 characters') // Validation error removed on keystroke | ||
}) | ||
|
||
it('Can create user account', () => { | ||
it('Can create user account with first name, last name and organization name', () => { | ||
cy.intercept('POST', '/api/signup/').as('signupRequest') | ||
|
||
const email = `new_user+${Math.floor(Math.random() * 10000)}@posthog.com` | ||
cy.get('[data-attr=signup-email]').type(email).should('have.value', email) | ||
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678') | ||
cy.get('[data-attr=signup-start]').click() | ||
cy.get('[data-attr=signup-first-name]').type('Alice').should('have.value', 'Alice') | ||
cy.get('[data-attr=signup-name]').type('Alice Bob').should('have.value', 'Alice Bob') | ||
cy.get('[data-attr=signup-organization-name]').type('Hogflix SpinOff').should('have.value', 'Hogflix SpinOff') | ||
cy.get('[data-attr=signup-role-at-organization]').click() | ||
cy.get('.Popover li:first-child').click() | ||
cy.get('[data-attr=signup-role-at-organization]').contains('Engineering') | ||
cy.get('[data-attr=signup-submit]').click() | ||
|
||
cy.wait('@signupRequest').then((interception) => { | ||
expect(interception.request.body).to.have.property('first_name') | ||
expect(interception.request.body.first_name).to.equal('Alice') | ||
expect(interception.request.body).to.have.property('last_name') | ||
expect(interception.request.body.last_name).to.equal('Bob') | ||
expect(interception.request.body).to.have.property('organization_name') | ||
expect(interception.request.body.organization_name).to.equal('Hogflix SpinOff') | ||
}) | ||
|
||
// lazy regex for a guid | ||
cy.location('pathname').should('match', /\/verify_email\/[a-zA-Z0-9_.-]*/) | ||
}) | ||
|
||
it('Can create user account with just a first name', () => { | ||
cy.intercept('POST', '/api/signup/').as('signupRequest') | ||
|
||
const email = `new_user+${Math.floor(Math.random() * 10000)}@posthog.com` | ||
cy.get('[data-attr=signup-email]').type(email).should('have.value', email) | ||
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678') | ||
cy.get('[data-attr=signup-start]').click() | ||
cy.get('[data-attr=signup-name]').type('Alice').should('have.value', 'Alice') | ||
cy.get('[data-attr=signup-role-at-organization]').click() | ||
cy.get('.Popover li:first-child').click() | ||
cy.get('[data-attr=signup-role-at-organization]').contains('Engineering') | ||
cy.get('[data-attr=signup-submit]').click() | ||
|
||
cy.wait('@signupRequest').then((interception) => { | ||
expect(interception.request.body).to.have.property('first_name') | ||
expect(interception.request.body.first_name).to.equal('Alice') | ||
expect(interception.request.body).to.not.have.property('last_name') | ||
expect(interception.request.body).to.not.have.property('organization_name') | ||
}) | ||
|
||
// lazy regex for a guid | ||
cy.location('pathname').should('match', /\/verify_email\/[a-zA-Z0-9_.-]*/) | ||
}) | ||
|
@@ -74,7 +109,7 @@ describe('Signup', () => { | |
cy.get('.Toastify [data-attr="error-toast"]').contains('Inactive social login session.') | ||
}) | ||
|
||
it.only('Shows redirect notice if redirecting for maintenance', () => { | ||
it('Shows redirect notice if redirecting for maintenance', () => { | ||
cy.intercept('**/decide/*', (req) => | ||
req.reply( | ||
decideResponse({ | ||
|
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 |
---|---|---|
|
@@ -61,10 +61,15 @@ beforeEach(() => { | |
email: '[email protected]', | ||
password: '12345678', | ||
}) | ||
cy.visit('/insights') | ||
cy.wait('@getInsights').then(() => { | ||
cy.get('.saved-insights tr').should('exist') | ||
}) | ||
|
||
if (Cypress.spec.name.includes('before-onboarding')) { | ||
cy.visit('/?no-preloaded-app-context=true') | ||
} else { | ||
cy.visit('/insights') | ||
cy.wait('@getInsights').then(() => { | ||
cy.get('.saved-insights tr').should('exist') | ||
}) | ||
} | ||
} | ||
}) | ||
|
||
|
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
Binary file modified
BIN
+1.03 KB
(100%)
...snapshots__/exporter-exporter--funnel-top-to-bottom-breakdown-insight--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+314 Bytes
(100%)
frontend/__snapshots__/scenes-app-batchexports--exports--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-649 Bytes
(98%)
frontend/__snapshots__/scenes-app-batchexports--exports--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.54 KB
(110%)
...napshots__/scenes-app-insights--funnel-historical-trends-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.37 KB
(110%)
...tend/__snapshots__/scenes-app-insights--funnel-historical-trends-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.46 KB
(110%)
...apshots__/scenes-app-insights--funnel-historical-trends-edit--light--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.47 KB
(110%)
...end/__snapshots__/scenes-app-insights--funnel-historical-trends-edit--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+21.9 KB
(110%)
...ts__/scenes-app-insights--funnel-left-to-right-breakdown-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4.56 KB
(100%)
..._snapshots__/scenes-app-insights--funnel-left-to-right-breakdown-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+21.7 KB
(110%)
...s__/scenes-app-insights--funnel-left-to-right-breakdown-edit--light--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4.68 KB
(100%)
...snapshots__/scenes-app-insights--funnel-left-to-right-breakdown-edit--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.6 KB
(100%)
.../__snapshots__/scenes-app-insights--funnel-left-to-right-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.27 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-left-to-right-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.59 KB
(100%)
...__snapshots__/scenes-app-insights--funnel-left-to-right-edit--light--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+4.99 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-left-to-right-edit--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.59 KB
(100%)
..._snapshots__/scenes-app-insights--funnel-time-to-convert-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.37 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-time-to-convert-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.57 KB
(100%)
...snapshots__/scenes-app-insights--funnel-time-to-convert-edit--light--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.3 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-time-to-convert-edit--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.7 KB
(100%)
...ts__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.36 KB
(100%)
..._snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.43 KB
(100%)
...s__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.3 KB
(100%)
...snapshots__/scenes-app-insights--funnel-top-to-bottom-breakdown-edit--light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.47 KB
(100%)
.../__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--dark--webkit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.38 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+5.96 KB
(100%)
...__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.8 KB
(100%)
frontend/__snapshots__/scenes-app-insights--funnel-top-to-bottom-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+7.32 KB
(110%)
frontend/__snapshots__/scenes-app-insights--lifecycle-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.48 KB
(110%)
frontend/__snapshots__/scenes-app-insights--lifecycle-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+7.42 KB
(110%)
frontend/__snapshots__/scenes-app-insights--lifecycle-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.37 KB
(110%)
frontend/__snapshots__/scenes-app-insights--lifecycle-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.89 KB
(110%)
...d/__snapshots__/scenes-app-insights--retention-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.62 KB
(110%)
frontend/__snapshots__/scenes-app-insights--retention-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.86 KB
(110%)
.../__snapshots__/scenes-app-insights--retention-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.93 KB
(110%)
frontend/__snapshots__/scenes-app-insights--retention-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+5.88 KB
(100%)
frontend/__snapshots__/scenes-app-insights--retention-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.8 KB
(100%)
frontend/__snapshots__/scenes-app-insights--retention-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+5.99 KB
(100%)
frontend/__snapshots__/scenes-app-insights--retention-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.01 KB
(100%)
frontend/__snapshots__/scenes-app-insights--retention-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.03 KB
(110%)
frontend/__snapshots__/scenes-app-insights--stickiness-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.81 KB
(110%)
frontend/__snapshots__/scenes-app-insights--stickiness-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.08 KB
(110%)
frontend/__snapshots__/scenes-app-insights--stickiness-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+7.03 KB
(110%)
frontend/__snapshots__/scenes-app-insights--stickiness-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.79 KB
(110%)
.../__snapshots__/scenes-app-insights--trends-bar-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.17 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.44 KB
(110%)
...__snapshots__/scenes-app-insights--trends-bar-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.05 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+7.02 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.98 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.96 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.47 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-bar-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.79 KB
(110%)
...__snapshots__/scenes-app-insights--trends-line-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.17 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-line-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.45 KB
(110%)
..._snapshots__/scenes-app-insights--trends-line-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.04 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-line-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.7 KB
(110%)
.../__snapshots__/scenes-app-insights--trends-pie-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.63 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.56 KB
(110%)
...__snapshots__/scenes-app-insights--trends-pie-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.41 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.31 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.5 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+5.95 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.36 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-pie-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.34 KB
(110%)
..._snapshots__/scenes-app-insights--trends-table-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.92 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-table-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.33 KB
(110%)
...snapshots__/scenes-app-insights--trends-table-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.88 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-table-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+12.8 KB
(120%)
frontend/__snapshots__/scenes-app-insights--trends-table-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+8.75 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-table-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+12.4 KB
(120%)
frontend/__snapshots__/scenes-app-insights--trends-table-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+7.86 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-table-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.92 KB
(110%)
..._snapshots__/scenes-app-insights--trends-value-breakdown-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.81 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-breakdown-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.83 KB
(110%)
...snapshots__/scenes-app-insights--trends-value-breakdown-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.51 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-breakdown-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+6.58 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.41 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+6.19 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+4.99 KB
(110%)
frontend/__snapshots__/scenes-app-insights--trends-value-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+4.61 KB
(100%)
...tend/__snapshots__/scenes-app-insights--trends-world-map-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.38 KB
(100%)
frontend/__snapshots__/scenes-app-insights--trends-world-map-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+4.71 KB
(100%)
...end/__snapshots__/scenes-app-insights--trends-world-map-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+4.93 KB
(100%)
frontend/__snapshots__/scenes-app-insights--trends-world-map-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+5.46 KB
(100%)
frontend/__snapshots__/scenes-app-insights--user-paths-edit--dark--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+5.72 KB
(100%)
frontend/__snapshots__/scenes-app-insights--user-paths-edit--dark.png
Oops, something went wrong.
Binary file modified
BIN
+5.53 KB
(100%)
frontend/__snapshots__/scenes-app-insights--user-paths-edit--light--webkit.png
Oops, something went wrong.
Binary file modified
BIN
+6.06 KB
(100%)
frontend/__snapshots__/scenes-app-insights--user-paths-edit--light.png
Oops, something went wrong.
Binary file modified
BIN
+2.19 KB
(100%)
frontend/__snapshots__/scenes-other-settings--settings-user--dark.png
Oops, something went wrong.
Binary file modified
BIN
+2.02 KB
(100%)
frontend/__snapshots__/scenes-other-settings--settings-user--light.png
Oops, something went wrong.
Binary file modified
BIN
+614 Bytes
(100%)
frontend/__snapshots__/scenes-other-signup--cloud--light.png
Oops, something went wrong.
Binary file modified
BIN
+610 Bytes
(100%)
frontend/__snapshots__/scenes-other-signup--self-hosted--light.png
Oops, something went wrong.
Binary file modified
BIN
+514 Bytes
(100%)
frontend/__snapshots__/scenes-other-signup--self-hosted-sso--light.png
Oops, something went wrong.
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
Oops, something went wrong.