mirror of
https://github.com/enso-org/enso.git
synced 2025-01-04 22:44:18 +03:00
5f1333a519
This makes it consistent with the indentation style of GUI2. # Important Notes - This commit *will* need to be added to [`.git-blame-ignore-revs`](https://github.com/enso-org/enso/blob/develop/.git-blame-ignore-revs) *after* it is merged. - This shouldn't need any particular QA (although QA doesn't hurt), as the only thing that was done is a `npx prettier -w .`, meaning that there should be zero logic changes.
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
/** @file Playwright component testing configuration. */
|
|
import vitePluginYaml from '@modyfi/vite-plugin-yaml'
|
|
import * as componentTesting from '@playwright/experimental-ct-react'
|
|
|
|
// This is an autogenerated file.
|
|
/* eslint-disable @typescript-eslint/strict-boolean-expressions, @typescript-eslint/no-magic-numbers */
|
|
export default componentTesting.defineConfig({
|
|
testDir: './test-component',
|
|
snapshotDir: './__snapshots__',
|
|
timeout: 10_000,
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
...(process.env.CI ? { workers: 1 } : {}),
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...componentTesting.devices['Desktop Chrome'] },
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: { ...componentTesting.devices['Desktop Firefox'] },
|
|
},
|
|
...(process.env.CI
|
|
? []
|
|
: [
|
|
{
|
|
name: 'webkit',
|
|
use: { ...componentTesting.devices['Desktop Safari'] },
|
|
},
|
|
]),
|
|
],
|
|
use: {
|
|
trace: 'on-first-retry',
|
|
ctPort: 3100,
|
|
ctViteConfig: {
|
|
plugins: [vitePluginYaml()],
|
|
define: {
|
|
// These are constants, and MUST be `CONSTANT_CASE`.
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
['REDIRECT_OVERRIDE']: 'undefined',
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
['process.env.NODE_ENV']: JSON.stringify('production'),
|
|
},
|
|
},
|
|
},
|
|
})
|