aktueller Stand

This commit is contained in:
root
2025-11-09 14:31:52 +01:00
parent dc95156793
commit cd93800ffb
5 changed files with 266 additions and 124 deletions

View File

@@ -1,8 +1,8 @@
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
test('zeigt das Login-Formular an, wenn keine Session aktiv ist', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
expect(screen.getByText(/Pickup Config Login/i)).toBeInTheDocument();
expect(screen.getByLabelText(/E-Mail/i)).toBeInTheDocument();
});