File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,6 @@ node_modules:
1313 yarn install --immutable
1414 @touch $@
1515
16- build-browser : build # build dependencies
17- $(yarn_run ) umd --no-stats
18- .PHONY : build-browser
19-
2016build : # # Builds libraries in prod mode, and all dependencies
2117 yarn run -T browser . build
2218.PHONY : build
@@ -25,21 +21,15 @@ clean: ## Clean the build directory
2521 rm -rf dist generated
2622.PHONY : clean
2723
28- # # Test Commands
29-
30- tdd : node_modules # # Runs unit tests in watch mode
31- $(yarn_run ) test --watch
32- .PHONY : tdd
33-
3424test-unit : node_modules # # Runs unit tests
3525 $(yarn_run ) test
3626.PHONY : test-unit
3727
38- test-qa : build-browser
28+ test-qa : build
3929 COVERAGE=false $(yarn_run ) test --runTestsByPath qa/__tests__/* .test.ts --testPathIgnorePatterns qa/__tests__/destinations.test.ts --reporters=" default" --reporters=" <rootDir>/qa/lib/jest-reporter.js" ${args}
4030.PHONY : test-qa
4131
42- test-qa-destinations : build-browser
32+ test-qa-destinations : build
4333 COVERAGE=false $(yarn_run ) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters=" default" --reporters=" <rootDir>/qa/lib/jest-reporter.js" ${args}
4434.PHONY : test-
4535
You can’t perform that action at this time.
0 commit comments