CHORE: Remove in-required tests from the application
Some checks failed
Build and Push Development Docker Image / build-and-push (push) Successful in 1m36s
Run Unit and Integration Tests / test (push) Failing after 56s
Run Unit and Integration Tests / test (pull_request) Failing after 54s

This commit is contained in:
2025-06-18 21:48:26 +01:00
parent 155f91c240
commit 85bed825fc
2 changed files with 0 additions and 18 deletions

View File

@ -1,7 +0,0 @@
import { describe, it, expect } from 'vitest';
describe('sum test', () => {
it('adds 1 + 2 to equal 3', () => {
expect(1 + 2).toBe(3);
});
});

View File

@ -1,11 +0,0 @@
import { describe, test, expect } from 'vitest';
import '@testing-library/jest-dom/vitest';
import { render, screen } from '@testing-library/svelte';
import Page from './+page.svelte';
describe('/+page.svelte', () => {
test('should render h1', () => {
render(Page);
expect(screen.getByRole('heading', { level: 1 })).toBeInTheDocument();
});
});