mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
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()
|
||
|
})
|
||
|
})
|