File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
e2e/cases/lazy-compilation/persistent-cache
rspack-test/watchCases/chunks/dynamic-entry-with-depend-on Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { expect , test } from "@/fixtures" ;
2
2
3
- test ( "should load success" , async ( { page, rspack } ) => {
3
+ // Ref: https://github.com/web-infra-dev/rspack/issues/11829
4
+ test . skip ( "should load success" , async ( { page, rspack } ) => {
4
5
await page . getByText ( "Click me" ) . click ( ) ;
5
6
let component_count = await page . getByText ( "Component" ) . count ( ) ;
6
7
expect ( component_count ) . toBe ( 1 ) ;
Original file line number Diff line number Diff line change
1
+ module . exports = function ( config ) {
2
+ let nativeWatcherEnabled = config . experiments ?. nativeWatcher === true ;
3
+
4
+ // Ref: https://github.com/web-infra-dev/rspack/issues/11828
5
+ if ( process . platform === "win32" && nativeWatcherEnabled ) {
6
+ return false ;
7
+ }
8
+ return true ;
9
+ }
You can’t perform that action at this time.
0 commit comments