2
0
Files
bot/apps/builder/cypress/tests/board.ts
Baptiste Arnaud a54e42f255 🛠️ Adapt Cypress to Turbo Repo
2021-12-17 07:54:12 +01:00

13 lines
260 B
TypeScript

describe('BoardPage', () => {
beforeEach(() => {
cy.task('seed')
cy.signOut()
})
it('steps should be droppable', () => {
cy.signIn('test2@gmail.com')
cy.visit('/typebots/typebot1')
// Can't find an easy way to implement this
})
})