We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3c2dcf commit d7b853bCopy full SHA for d7b853b
1 file changed
tests/rspack/rsbuild.ts
@@ -1,16 +1,11 @@
1
import type { RunOptions } from '../../types';
2
-import { $, cd, runInRepo } from '../../utils';
+import { runInRepo } from '../../utils';
3
4
export async function test(options: RunOptions) {
5
await runInRepo({
6
...options,
7
repo: 'web-infra-dev/rsbuild',
8
branch: process.env.RSBUILD_REF ?? 'main',
9
- beforeTest: async () => {
10
- cd('./e2e');
11
- await $`pnpm playwright install chromium`;
12
- cd('..');
13
- },
14
- test: ['e2e:rspack'],
+ test: ['e2e'],
15
});
16
}
0 commit comments