/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/playwright-runner.spec.js
23 строки
832 B
Ulises Gascón
fix: linting issues (#6033)
28 окт 2025, 18:12
Не верифицирован
28 окт 2025, 18:12
2235819
Код
Авторство
О чём код?
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 }); });