13 lines
260 B
TypeScript
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
|
|
})
|
|
})
|