mirror of
https://github.com/supabase/supabase.git
synced 2026-06-23 21:43:18 +08:00
26 lines
758 B
JavaScript
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'
|
|
})
|