fix(frontend): Fix lint and type errors in test files

- Remove unused imports (fireEvent, IssueStatus) in issue component tests
- Add E2E global type declarations for __TEST_AUTH_STORE__
- Fix toHaveAccessibleName assertion with regex pattern

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-31 11:18:05 +01:00
parent 5b1e2852ea
commit db868c53c6
5 changed files with 21 additions and 4 deletions

View File

@@ -238,7 +238,7 @@ test.describe('Issue Management', () => {
expect(count).toBeGreaterThan(0);
// First checkbox should have accessible label
await expect(checkboxes.first()).toHaveAccessibleName();
await expect(checkboxes.first()).toHaveAccessibleName(/.+/);
});
test('issue detail has proper radiogroup for status', async ({ page }) => {