import { defineConfig, devices } from '@playwright/test'; const isCI = !!process.env.CI; const baseUrl = process.env.BASE_URL || 'http://localhost:5050'; /** * See https://playwright.dev/docs/test-configuration. */ export default defineConfig({ testDir: './src', testMatch: /.*\.e2e\.(spec\.)?ts/, /* Run tests in files in parallel */ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: isCI, /* Retry on CI only */ retries: isCI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: isCI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: baseUrl, /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: 'on-first-retry', testIdAttribute: 'data-test-id', locale: 'en-GB', timezoneId: 'Europe/Paris', }, /* Configure projects for major browsers */ projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, { name: 'firefox', use: { ...devices['Desktop Firefox'] }, }, { name: 'webkit', use: { ...devices['Desktop Safari'] }, }, ], /* Run your local dev server before starting the tests */ ...(isCI ? {} : { webServer: { command: 'npm run preview', url: 'http://127.0.0.1:5050', reuseExistingServer: true, }, }), }); =v2.8.0'>refslogtreecommitdiff
path: root/src/pages (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-07-24feat(new-tool): added an ETA calculatorGravatar Corentin Thomasset 5-1/+112
2022-07-24chore(deps): upgraded naive-ui versionGravatar Corentin Thomasset 2-394/+71
2022-07-24fix(sql-prettifier): better responsivenessGravatar Corentin Thomasset 1-51/+44
2022-07-24refactor(json-prettify): improved layout for the json prettifierGravatar Corentin Thomasset 2-37/+44
2022-07-24refactor(sql-prettifier): remove unused service filesGravatar Corentin Thomasset 2-6/+0
2022-07-24chore(release): 2.7.0v2.7.0Gravatar Corentin Thomasset 3-3/+15
2022-07-24feat(new-tool): added an SQL prettifier and formatterGravatar Corentin Thomasset 7-5/+169
2022-07-24fix(typo): fix few typosGravatar Corentin Thomasset 3-7/+7
2022-07-24chore(release): 2.6.0v2.6.0Gravatar Corentin Thomasset 3-3/+24
2022-07-24feat(new-tool): added chronometerGravatar Corentin Thomasset 5-0/+74
2022-07-23fix(script):fixed missing paranthesis in tool generator scriptGravatar Corentin Thomasset 1-3/+3
2022-07-23refactor(import): auto reordered importsGravatar Corentin Thomasset 1-16/+16
2022-07-23fix(text-statistics): empty text mean 0 words and 0 linesGravatar Corentin Thomasset 1-6/+4
2022-07-23refactor: added accessibility labels on icon buttonsGravatar Corentin Thomasset 1-4/+6
2022-07-23feat(search): focus the search bar using Ctrl+KGravatar Corentin Thomasset 1-3/+20
2022-07-23fix(lint): cleanned index.htmlGravatar Corentin Thomasset 1-6/+18
2022-07-23fix(deps): run dependencie audit auto fixGravatar Corentin Thomasset 1-29/+75
2022-07-21chore(release): 2.5.3v2.5.3Gravatar Corentin Thomasset 3-3/+10
2022-07-21fix: updated license in READMEGravatar Corentin Thomasset 1-1/+1
2022-07-21chore(release): 2.5.2v2.5.2Gravatar Corentin Thomasset 3-3/+5
2022-07-21chore: added missing fields in package.jsonGravatar Corentin Thomasset 1-0/+18