Skip to content

Commit 272a958

Browse files
committed
wip
1 parent f00a0fc commit 272a958

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

packages/browser/Makefile

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,21 @@ test-unit: node_modules ## Runs unit tests
3535
$(yarn_run) test
3636
.PHONY: test-unit
3737

38-
test-coverage: node_modules ## Runs unit tests with coverage
39-
$(yarn_run) test --coverage --forceExit
40-
.PHONY: test-coverage
41-
4238
test-qa: build-browser ## Runs all QA tests in a single command
4339
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}
44-
.PHONY: test-coverage
40+
.PHONY: test-qa
4541

4642
test-qa-destinations: build-browser ## Runs Destination QA tests. options. DESTINATION=amplitude DEBUG=true
4743
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
48-
.PHONY: test-coverage
44+
.PHONY: test-qa-destinations
4945

5046
test-integration: build ## Runs all integration tests in a single command
5147
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath e2e-tests/**/*.test.ts ${args}
52-
.PHONY: test-coverage
48+
.PHONY: test-integration
5349

5450
test-perf: build ## Runs all integration tests in a single command
5551
$(yarn_run) test --forceExit --runTestsByPath e2e-tests/performance/*.test.ts ${args}
56-
.PHONY: test-coverage
52+
.PHONY: test-perf
5753

5854
lint: node_modules ## Lints the source code
5955
$(yarn_run) lint

0 commit comments

Comments
 (0)