Skip to content

Commit

Permalink
test: fix e2e test config path
Browse files Browse the repository at this point in the history
  • Loading branch information
rickstaa committed Oct 4, 2022
1 parent 1617c3f commit a7d3aaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jest.e2e.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit a7d3aaa

Please sign in to comment.