Add jest rootDir and test-frontend dependency (#15860)
- Define jest rootDir to limit where it looks for test files - Add missing dependency on test-frontend target so it can be ran from a clean checkout
This commit is contained in:
parent
44286e29f0
commit
05fb1f61d5
2 changed files with 3 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -359,7 +359,7 @@ test-backend:
|
||||||
@$(GO) test $(GOTESTFLAGS) -mod=vendor -tags='$(TEST_TAGS)' $(GO_PACKAGES)
|
@$(GO) test $(GOTESTFLAGS) -mod=vendor -tags='$(TEST_TAGS)' $(GO_PACKAGES)
|
||||||
|
|
||||||
.PHONY: test-frontend
|
.PHONY: test-frontend
|
||||||
test-frontend:
|
test-frontend: node_modules
|
||||||
@NODE_OPTIONS="--experimental-vm-modules --no-warnings" npx jest --color
|
@NODE_OPTIONS="--experimental-vm-modules --no-warnings" npx jest --color
|
||||||
|
|
||||||
.PHONY: test-check
|
.PHONY: test-check
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
export default {
|
export default {
|
||||||
setupFilesAfterEnv: ['jest-extended'],
|
setupFilesAfterEnv: ['jest-extended'],
|
||||||
testTimeout: 20000,
|
testTimeout: 20000,
|
||||||
|
rootDir: 'web_src',
|
||||||
testMatch: [
|
testMatch: [
|
||||||
'**/web_src/**/*.test.js',
|
'<rootDir>/**/*.test.js',
|
||||||
],
|
],
|
||||||
transform: {},
|
transform: {},
|
||||||
verbose: false,
|
verbose: false,
|
||||||
|
|
Loading…
Reference in a new issue