1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-07 07:46:32 +02:00
Files
slate/playwright.config.ts
Joe Anderson fb87646e86 Experimental chunking optimisation and other performance improvements (#5871)
* Chunking optimization

* Fix comments

* Remove redundant `insertionsMinusRemovals` variable

* Fix typo

* Unblock Netlify builds

* Add placeholder

* Upgrade Playwright (fixes crash when debugging)

* Fix `autoFocus` not working

* Fix huge document test

* Fix the previous issue without changing `useSlateSelector`

* Retry `test:integration`

* Re-implement `useSlateWithV`

* Retry `test:integration`

* Update docs

* Update JS examples to match TS examples

* Upload Playwright's `test-results` directory in CI to access traces

* Change trace mode to `retain-on-first-failure`

* Fix: `Locator.fill(text)` is flaky on Editable

* Add changesets

* Increase minimum `slate-dom` version

* Update changeset

* Update 09-performance.md

* Deprecate the `useSlateWithV` hook

* Fix errors and improve clarity in 09-performance.md

* Minimum `slate-dom` version is now 0.116

* Update `yarn.lock`
2025-06-06 16:42:11 -07:00

94 lines
2.4 KiB
TypeScript

import { PlaywrightTestConfig } from '@playwright/test'
import { devices } from '@playwright/test'
import * as os from 'os'
const projects = [
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
permissions: ['clipboard-read', 'clipboard-write'],
launchOptions: {
// headless: false,
/**
* Enable scrollbars in headless mode.
*/
ignoreDefaultArgs: ['--hide-scrollbars'],
},
},
},
{
name: 'firefox',
use: {
...devices['Desktop Firefox'],
},
},
]
if (os.type() === 'Darwin') {
projects.push({
name: 'webkit',
use: {
...devices['Desktop Safari'],
},
})
}
const retries = process.env.PLAYWRIGHT_RETRIES
? +process.env.PLAYWRIGHT_RETRIES
: process.env.CI
? 5
: 2
/**
* See https://playwright.dev/docs/test-configuration.
*/
const config: PlaywrightTestConfig = {
testDir: './playwright',
/* Maximum time one test can run for. */
timeout: 20 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 8000,
},
/* Run tests in files in parallel */
fullyParallel: !process.env.CI,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
// allow PLAYWRIGHT_RETRIES to override for local dev
retries,
/* Opt out of parallel tests. */
// workers: 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI ? 'github' : 'list',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
viewport: {
width: 1280,
height: 720,
},
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://localhost:3000',
/* Collect trace if the first attempt fails. See https://playwright.dev/docs/trace-viewer */
trace: 'retain-on-first-failure',
/* Name of attribute for selecting elements by page.getByTestId */
testIdAttribute: 'data-test-id',
},
/* Configure projects for major browsers */
projects,
/* Folder for test artifacts such as screenshots, videos, traces, etc. */
// outputDir: 'test-results/',
}
export default config