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 4eefc26 commit 5406560Copy full SHA for 5406560
tests/package.json
@@ -2,6 +2,9 @@
2
"name": "nginx-docs-theme-test",
3
"version": "1.0.0",
4
"private": "true",
5
+ "scripts": {
6
+ "test": "playwright test --workers 6"
7
+ },
8
"devDependencies": {
9
"@playwright/test": "1.48.0",
10
"dotenv": "^17.2.3"
tests/playwright.config.js
@@ -4,7 +4,7 @@ import dotenv from 'dotenv';
const BASE_URL = 'http://127.0.0.1';
const PORT = 1313;
-dotenv.config();
+dotenv.config({ quiet: true });
export default defineConfig({
testDir: './src',
tests/src/mock/index.js
@@ -1 +1 @@
1
-export * from './coveo.mockdata';
+export * from './coveo.mock';
0 commit comments