Skip to content

Commit 656341e

Browse files
committed
wip
1 parent 918e081 commit 656341e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ steps:
3939
commands:
4040
- npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN}
4141
- echo "--- Install dependencies"
42-
- yarn install --immutable
42+
- PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 yarn install --immutable
4343
- echo "--- Build bundles"
4444
- yarn run -T browser . build
4545
- echo '--- Check Size limit'

packages/browser/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ test-unit: node_modules ## Runs unit tests
2121
$(yarn_run) test
2222
.PHONY: test-unit
2323

24-
test-qa: build
24+
test-qa: build
2525
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}
2626
.PHONY: test-qa
2727

28-
test-qa-destinations: build
28+
test-qa-destinations: build
2929
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath qa/__tests__/destinations.test.ts --reporters="default" --reporters="<rootDir>/qa/lib/jest-reporter.js" ${args}
3030
.PHONY: test-
3131

32-
test-integration: build
32+
test-integration: build
3333
COVERAGE=false $(yarn_run) test --forceExit --runTestsByPath e2e-tests/**/*.test.ts ${args}
3434
.PHONY: test-integration
3535

36-
test-perf: build
36+
test-perf: build
3737
$(yarn_run) test --forceExit --runTestsByPath e2e-tests/performance/*.test.ts ${args}
3838
.PHONY: test-perf
3939

0 commit comments

Comments
 (0)