Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect, test } from "@/fixtures";

test("should load success", async ({ page, rspack }) => {
test.skip("should load success", async ({ page, rspack }) => {
await page.getByText("Click me").click();
let component_count = await page.getByText("Component").count();
expect(component_count).toBe(1);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = function (config) {
let nativeWatcherEnabled = config.experiments?.nativeWatcher === true;

if (process.platform === "win32" && nativeWatcherEnabled) {
return false;
}
return true;
}
Loading