We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44286e2 commit 05fb1f6Copy full SHA for 05fb1f6
Makefile
@@ -359,7 +359,7 @@ test-backend:
359
@$(GO) test $(GOTESTFLAGS) -mod=vendor -tags='$(TEST_TAGS)' $(GO_PACKAGES)
360
361
.PHONY: test-frontend
362
-test-frontend:
+test-frontend: node_modules
363
@NODE_OPTIONS="--experimental-vm-modules --no-warnings" npx jest --color
364
365
.PHONY: test-check
jest.config.js
@@ -1,8 +1,9 @@
1
export default {
2
setupFilesAfterEnv: ['jest-extended'],
3
testTimeout: 20000,
4
+ rootDir: 'web_src',
5
testMatch: [
- '**/web_src/**/*.test.js',
6
+ '<rootDir>/**/*.test.js',
7
],
8
transform: {},
9
verbose: false,
0 commit comments