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:
silverwind 2021-05-14 08:28:51 +02:00 committed by GitHub
parent 44286e29f0
commit 05fb1f61d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -359,7 +359,7 @@ test-backend:
@$(GO) test $(GOTESTFLAGS) -mod=vendor -tags='$(TEST_TAGS)' $(GO_PACKAGES)
.PHONY: test-frontend
test-frontend:
test-frontend: node_modules
@NODE_OPTIONS="--experimental-vm-modules --no-warnings" npx jest --color
.PHONY: test-check

View File

@ -1,8 +1,9 @@
export default {
setupFilesAfterEnv: ['jest-extended'],
testTimeout: 20000,
rootDir: 'web_src',
testMatch: [
'**/web_src/**/*.test.js',
'<rootDir>/**/*.test.js',
],
transform: {},
verbose: false,