Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/tester-app/__tests__/lazy-compilation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('lazy compilation', () => {
webpackConfig: path.join(__dirname, 'configs', './rspack.config.mjs'),
};

// @ts-ignore
// @ts-expect-error
const { stop } = await startCommand.func([], config, args);
stopServer = stop;
});
Expand Down
2 changes: 1 addition & 1 deletion apps/tester-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"start": "react-native webpack-start",
"bundle:android": "react-native webpack-bundle --platform android --entry-file index.js --dev=false --bundle-output build/output/android/index.android.bundle --assets-dest build/output/android/res",
"bundle:ios": "react-native webpack-bundle --platform ios --entry-file index.js --dev=false --bundle-output build/output/ios/main.jsbundle --assets-dest build/output/ios",
"test": "vitest run",
"test": "vitest run --no-file-parallelism",
"cs:keygen": "node ./scripts/generate-code-signing-keys.js",
"serve-remote-assets:android": "adb reverse tcp:9999 tcp:9999 && pnpm http-server -p 9999 build/output/android/remote",
"serve-remote-assets:ios": "pnpm http-server -p 9999 build/output/ios/remote"
Expand Down
Loading