@aleph-alpha/config-playwright
v0.3.0
Published
_@aleph-alpha/config-playwright_
Readme
Playwright Config
@aleph-alpha/config-playwright
This package provides basic config for playwright setup.
// To install this package
yarn add @aleph-alpha/config-playwright
// Example
// e2e/config.ts
import type { PlaywrightTestConfig } from '@playwright/test';
import mountPlaywrightConfig from '@aleph-alpha/config-playwright'
const config: PlaywrightTestConfig = {
...mountPlaywrightConfig({
baseURL: process.env.VITE_E2E_BASE_URL,
ci: process.env.CI,
})
};See Functions section below for available methods and their definitions
