Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: enable lazy compilation case for Windows #3280

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions e2e/cases/lazy-compilation/add-initial-chunk/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import { dev, rspackOnlyTest } from '@e2e/helper';
import test, { expect } from '@playwright/test';
import { expect } from '@playwright/test';

// https://github.com/web-infra-dev/rspack/issues/6633
rspackOnlyTest(
'should render pages correctly when using lazy compilation and add new initial chunk',
async ({ page }) => {
// TODO fix this case in Windows
if (process.platform === 'win32') {
test.skip();
}
const rsbuild = await dev({
cwd: __dirname,
page,
Expand Down
7 changes: 1 addition & 6 deletions e2e/cases/lazy-compilation/basic/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import { dev, gotoPage, rspackOnlyTest } from '@e2e/helper';
import { expect, test } from '@playwright/test';
import { expect } from '@playwright/test';

rspackOnlyTest(
'should render pages correctly when using lazy compilation',
async ({ page }) => {
// TODO fix this case in Windows
if (process.platform === 'win32') {
test.skip();
}

const rsbuild = await dev({
cwd: __dirname,
});
Expand Down
Loading