chore: germantax customer project

This commit is contained in:
e2e
2026-07-11 09:07:34 +02:00
commit 6f248700d7
145 changed files with 9830 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
Feature: Authentication
Scenario: Redirect unauthenticated user to login
Given I visit "/companies"
Then the URL contains "/login"
Scenario: Successful login redirects to companies
Given I visit "/login"
When I fill "input[type='email']" with "founder@example.com"
And I fill "input[type='password']" with "test1234"
And I click "Sign in"
Then the URL contains "/companies"
Scenario: Wrong password shows an error
Given I visit "/login"
When I fill "input[type='email']" with "founder@example.com"
And I fill "input[type='password']" with "wrongpassword"
And I click "Sign in"
Then I see "Email or password is incorrect"
Scenario: Logged-in user can log out
Given I am logged in as "founder@example.com" with password "test1234"
When I log out
Then I see "Signed out"