0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/support/index.js
2021-03-26 17:38:13 -07:00

52 lines
1.4 KiB
JavaScript

import '@cypress/react/support'
import 'givens/setup'
import './commands'
import { unmount } from '@cypress/react'
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('cypress-terminal-report/src/installLogsCollector')()
} catch {}
beforeEach(() => {
if (Cypress.spec.specType === 'component') {
// Freeze time to 2021.01.05 Noon UTC - this should be the same date regardless of timezone.
cy.clock(1578225600000, ['Date'])
} else {
if (Cypress.spec.name.includes('Premium')) {
cy.visit('/login')
cy.intercept('/api/user/', { fixture: 'api/user-enterprise' })
logIn()
} else {
cy.visit('/')
cy.url().then((url) => {
if (url.includes('login')) {
logIn()
}
})
}
}
})
afterEach(() => {
if (Cypress.spec.specType === 'component') {
unmount()
}
})
const logIn = () => {
cy.get('[data-attr=login-email]').type('test@posthog.com').should('have.value', 'test@posthog.com')
cy.get('[data-attr=password]').type('12345678').should('have.value', '12345678')
cy.get('[type=submit]').click()
cy.location('pathname').should('not.eq', '/login') // Wait until login request fully completes
}
Cypress.on('uncaught:exception', () => {
return false
})