We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f83d8cd commit 4d8b3f4Copy full SHA for 4d8b3f4
1 file changed
tests/rsbuild/modernjs.ts
@@ -12,7 +12,8 @@ export async function test(options: RunOptions) {
12
await runInRepo({
13
...options,
14
repo: 'web-infra-dev/modern.js',
15
- branch: process.env.MODERN_REF ?? 'main',
+ // Using `v2` (the stable version) as `main` is still under development.
16
+ branch: process.env.MODERN_REF ?? 'v2',
17
beforeInstall: async () => {
18
if (isGitHubActions) {
19
const modernJsDir = join(process.cwd(), 'workspace/modernjs/modern.js');
@@ -44,7 +45,7 @@ export async function test(options: RunOptions) {
44
45
},
46
beforeTest: async () => {
47
cd('tests/e2e/builder');
- await $`pnpm playwright install --with-deps chromium`;
48
+ await $`pnpm playwright install chromium`;
49
cd('../../../');
50
51
test: ['test:rspack'],
0 commit comments