feat: Add test infrastructure with Jest and Playwright for Chromium

This commit is contained in:
User
2026-03-21 11:12:08 +00:00
parent b4c030e53e
commit 573f12b3cb
7 changed files with 367 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* Example Playwright tests for the 3D Flight Simulator project
*/
const { test, expect } = require('@playwright/test');
test('should display loading screen', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/3D Flight Simulator/);
await expect(page.locator('.loading-screen')).toBeVisible();
});
test('should navigate to intro screen', async ({ page }) => {
await page.goto('/');
await page.click('.start-button');
await expect(page.locator('.intro-screen')).toBeVisible();
});