Skip to content

Commit f00a0fc

Browse files
committed
wip
1 parent eb7ea4c commit f00a0fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/browser/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ test-coverage: node_modules ## Runs unit tests with coverage
4040
.PHONY: test-coverage
4141

4242
test-qa: build-browser ## Runs all QA tests in a single command
43-
$(yarn_run) test --runTestsByPath qa/__tests__/*.test.ts --testPathIgnorePatterns qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
43+
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}
4444
.PHONY: test-coverage
4545

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

5050
test-integration: build ## Runs all integration tests in a single command
51-
$(yarn_run) test --forceExit --runTestsByPath e2e-tests/**/*.test.ts ${args}
51+
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath e2e-tests/**/*.test.ts ${args}
5252
.PHONY: test-coverage
5353

5454
test-perf: build ## Runs all integration tests in a single command

0 commit comments

Comments
 (0)