ci: add pipeline to run tests on browsers (#6021)

This commit is contained in:
Ulises Gascón
2025-10-27 11:20:37 +01:00
committed by GitHub
parent c93ba2d878
commit 61ff26e089
3 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
const { test, expect } = require('@playwright/test');
test.describe.configure({ mode: 'parallel' });
test('index', async ({ page }) => {
await page.goto('http://localhost:9001/test/index.html');
await expect(page.locator('text=0 failed')).toBeVisible({ timeout: 60000 });
});
test('fp', async ({ page }) => {
await page.goto('http://localhost:9001/test/fp.html');
await expect(page.locator('text=0 failed')).toBeVisible({ timeout: 60000 });
});
test('backbone', async ({ page }) => {
await page.goto('http://localhost:9001/test/backbone.html');
await expect(page.locator('text=0 failed')).toBeVisible({ timeout: 60000 });
});
test('underscore', async ({ page }) => {
await page.goto('http://localhost:9001/test/underscore.html');
await expect(page.locator('text=0 failed')).toBeVisible({ timeout: 60000 });
});