/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
argos/playwright.config.ts
40 строк
846 B
Sébastien Lorber
refactor(monorepo): migrate to pnpm 11 (#12109)
04 июн 2026, 20:29
Не верифицирован
04 июн 2026, 20:29
96b32dd
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {devices} from '@playwright/test'; import type {PlaywrightTestConfig} from '@playwright/test'; /** * See https://playwright.dev/docs/test-configuration. */ const config: PlaywrightTestConfig = { testDir: './tests', timeout: 60000, reporter: [['list'], ['@argos-ci/playwright/reporter']], // Run website production built // Need to run "pnpm build:website:fast" before webServer: { cwd: '..', port: 3000, command: 'pnpm serve:website', }, // Browsers: only Chrome for now projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'], }, }, ], }; export default config;