Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20.09] Update makefile target, verbiage for jest. #10910

Merged
merged 1 commit into from Dec 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -165,7 +165,7 @@ client-watch: node-deps ## A useful target for parallel development building. S
client-dev-server: node-deps ## Starts a webpack dev server for client development (HMR enabled)
cd client && yarn run webpack-dev-server

client-test: node-deps ## Run JS unit tests via Karma
client-test: node-deps ## Run JS unit tests
cd client && yarn run test

client-eslint: node-deps # Run client linting
Expand All @@ -176,8 +176,8 @@ client-format-check: node-deps # Run client formatting check

client-lint: client-eslint client-format-check ## ES lint and check format of client

client-test-watch: client ## Watch and run qunit tests on changes via Karma
cd client && yarn run test-watch
client-test-watch: client ## Watch and run all client unit tests on changes
cd client && yarn run jest-watch

# Release Targets
release-create-rc: release-ensure-upstream ## Create a release-candidate branch
Expand Down