test: fix e2e test config path

This commit is contained in:
rickstaa
2022-10-04 13:16:33 +02:00
parent 1617c3fb22
commit a7d3aaa7b4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,5 +3,5 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
clearMocks: true,
testMatch: ["<rootDir>/tests/e2e/**/*.test.js"],
testMatch: ["<rootDir>/tests/e2e/**/*.test.ts"],
};
+1 -1
View File
@@ -8,7 +8,7 @@
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:update:snapshot": "jest -u",
"test:e2e": "jest --config jest.e2e.config.js",
"test:e2e": "jest --config jest.e2e.config.cjs",
"theme-readme-gen": "node scripts/generate-theme-doc",
"preview-theme": "node scripts/preview-theme",
"close-stale-theme-prs": "node scripts/close-stale-theme-prs",