Playwright
키워드
- E2E(End to End) Test
- Headless Chrome
- Puppeteer
- Playwright
- CodeceptJSPlaywright
npm i -D @playwright/test eslint-plugin-playwrightimport { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
testDir: './tests',
retries: 0,
use: {
channel: "chrome",
baseURL: 'http://localhost:8080',
headless: !!process.env.CI,
screenshot: 'only-on-failure',
},
};
export default config;Last updated