Files
supabase/tests/features/javascript/authentication.js
2022-04-08 16:34:15 +04:00

26 lines
758 B
JavaScript

const { Given, Then, When } = require('cucumber')
Given('an anonymous user', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending'
})
Given('an existing user', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending'
})
When('I sign up with a valid email and password', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending'
})
Then('I should be logged in', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending'
})
Then('I should be able to log out', function () {
// Write code here that turns the phrase above into concrete actions
return 'pending'
})