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

14 lines
274 B
Python

from behave import *
@given('an anonymous user')
def step_impl(context):
pass
@when('an existing user')
def step_impl(context):
assert True is not False
@then('I sign up with a valid email and password')
def step_impl(context):
assert context.failed is False