first test

This commit is contained in:
counterweight 2025-02-14 14:59:46 +01:00
parent 8ba43172d0
commit 498edcb215
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
4 changed files with 74 additions and 1 deletions

6
tests/app.spec.js Normal file
View file

@ -0,0 +1,6 @@
const { test, expect } = require('@playwright/test');
test('Home page has correct title', async () => {
const isTrue = true;
expect(isTrue).toBe(true);
});