mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-31 21:01:33 +02:00
[server-ce] Add e2e test for CE GitOrigin-RevId: f76ee4d19680c57a3a0854bc89175b3fb352ca41
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import { login } from './helpers/login'
|
|
|
|
describe('Accounts', function () {
|
|
it('can log in and out', function () {
|
|
login('user@example.com')
|
|
cy.visit('/project')
|
|
cy.findByText('Account').click()
|
|
cy.findByText('Log Out').click()
|
|
})
|
|
})
|