We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42c801d commit 35770b1Copy full SHA for 35770b1
playwright.config.ts
@@ -1,7 +1,7 @@
1
import { defineConfig, devices } from '@playwright/test';
2
3
export default defineConfig({
4
- testDir: './e2e/tests',
+ testDir: './tests/e2e/',
5
/* Run tests in files in parallel */
6
fullyParallel: false,
7
/* Fail the build on CI if you accidentally left test.only in the source code. */
e2e/base.ts renamed to tests/e2e/base.ts
e2e/tests/login.spec.ts renamed to tests/e2e/login.spec.ts
@@ -1,6 +1,6 @@
import { expect } from '@playwright/test';
-import { test } from '../base';
+import { test } from './base';
import { describe } from 'node:test';
describe("Login tests", () => {
0 commit comments