secajs/tests/app.spec.js
2025-02-14 14:59:46 +01:00

6 lines
161 B
JavaScript

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