Skip to content

Commit

Permalink
test(e2e): run in serial (#4396)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah authored Feb 28, 2022
1 parent b3f0522 commit 550c5c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
e2e:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
timeout-minutes: 20
env:
DEBUG: true
strategy:
Expand Down
2 changes: 1 addition & 1 deletion e2e/install.e2e.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const prepare = async (folderName) => {

Object.entries(packageManagerConfig).forEach(([packageManager, { install: installCmd, lockFile }]) => {
/** @type {import('ava').TestInterface} */
const testSuite = packageManagerExists(packageManager) ? test : test.skip
const testSuite = packageManagerExists(packageManager) ? test.serial : test.skip

testSuite(`${packageManager} → should install the cli and run the help command`, async (t) => {
const cwd = await prepare(`${packageManager}-try-install`)
Expand Down

1 comment on commit 550c5c0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📊 Benchmark results

Package size: 443 MB

Please sign in to comment.