0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/support/e2e.js
Emanuele Capparelli dfc04afa08
feat: date filter experiment (#10462)
Co-authored-by: Ben White <ben@benjackwhite.co.uk>
2022-07-04 12:46:12 +01:00

52 lines
1.6 KiB
JavaScript

import 'givens/setup'
import './commands'
import { decideResponse } from 'cypress/fixtures/api/decide'
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('cypress-terminal-report/src/installLogsCollector')()
} catch {}
// Add console errors into cypress logs. This helps with failures in Github Actions which otherwise swallows them.
// From: https://github.com/cypress-io/cypress/issues/300#issuecomment-688915086
Cypress.on('window:before:load', (win) => {
cy.spy(win.console, 'error')
cy.spy(win.console, 'warn')
})
beforeEach(() => {
cy.intercept('https://app.posthog.com/decide/*', (req) =>
req.reply(
decideResponse({
'toolbar-launch-side-action': true,
'date-filter-experiment': 'test',
})
)
)
if (Cypress.spec.name.includes('Premium')) {
cy.intercept('/api/users/@me/', { fixture: 'api/user-enterprise' })
cy.request('POST', '/api/login/', {
email: 'test@posthog.com',
password: '12345678',
})
cy.visit('/?no-preloaded-app-context=true')
} else {
cy.request('POST', '/api/login/', {
email: 'test@posthog.com',
password: '12345678',
})
cy.visit('/insights')
cy.get('.saved-insights').should('exist')
}
})
const resizeObserverLoopErrRe = /^[^(ResizeObserver loop limit exceeded)]/
Cypress.on('uncaught:exception', (err) => {
/* returning false here prevents Cypress from failing the test */
if (resizeObserverLoopErrRe.test(err.message)) {
return false
}
})