Skip to content

Commit 8316cad

Browse files
authored
fix: install puppeteer browser before test in rakkas (#366)
* fix: install puppeteer browser before test in rakkas * fix puppeteer install command * well, thats what i get for not copypasting
1 parent e4b7093 commit 8316cad

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

tests/rakkas.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ export async function test(options: RunOptions) {
1010
build: 'build',
1111
// This is needed to run puppeteer in Ubuntu 23+
1212
// https://github.com/puppeteer/puppeteer/pull/13196
13-
beforeTest: process.env.GITHUB_ACTIONS
14-
? async () => {
15-
execSync(
16-
'echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns',
17-
)
18-
}
19-
: undefined,
13+
beforeTest: [
14+
process.env.GITHUB_ACTIONS
15+
? async () => {
16+
execSync(
17+
'echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns',
18+
)
19+
}
20+
: null,
21+
'pnpm --dir testbed/examples exec puppeteer browsers install chrome',
22+
].filter((x) => x != null),
2023
test: 'vite-ecosystem-ci',
2124
})
2225
}

0 commit comments

Comments
 (0)