2
0
Files
bot/apps/builder/cypress/tests/board.ts

13 lines
260 B
TypeScript
Raw Normal View History

2021-12-16 10:43:49 +01:00
describe('BoardPage', () => {
beforeEach(() => {
cy.task('seed')
cy.signOut()
})
2021-12-17 07:54:12 +01:00
2021-12-16 10:43:49 +01:00
it('steps should be droppable', () => {
cy.signIn('test2@gmail.com')
cy.visit('/typebots/typebot1')
2021-12-17 07:54:12 +01:00
// Can't find an easy way to implement this
2021-12-16 10:43:49 +01:00
})
})