Skip to content

Update bundler production test manifest #77764

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

Merged
merged 1 commit into from
Apr 3, 2025
Merged
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
89 changes: 60 additions & 29 deletions test/rspack-build-tests-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1544,6 +1544,16 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/css-modules-pure-no-check/css-modules-pure-no-check.test.ts": {
"passed": [
"css-modules-pure-no-check should apply styles correctly",
"css-modules-pure-no-check should have emitted a CSS file"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-dir/css-modules-scoping/css-modules-scoping.test.ts": {
"passed": [
"css-modules-scoping should not prefix grid areas",
Expand Down Expand Up @@ -5872,6 +5882,50 @@
"flakey": [],
"runtimeError": false
},
"test/e2e/app-document/client.test.ts": {
"passed": [
"Document and App - Client side should share module state with pages"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-document/csp.test.ts": {
"passed": [
"Document and App - With CSP enabled should load inline script by hash",
"Document and App - With CSP enabled should load inline script by nonce"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-document/index.test.ts": {
"passed": ["Document and App should not have any missing key warnings"],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/app-document/rendering.test.ts": {
"passed": [
"Document and App - Rendering via HTTP _app should share module state with pages",
"Document and App - Rendering via HTTP _app shows a custom tag",
"Document and App - Rendering via HTTP _document Document.getInitialProps returns html prop representing app shell",
"Document and App - Rendering via HTTP _document adds crossOrigin to all scripts and preload links",
"Document and App - Rendering via HTTP _document adds nonces to all scripts and preload links",
"Document and App - Rendering via HTTP _document renders ctx.renderPage with enhanceApp and enhanceComponent correctly",
"Document and App - Rendering via HTTP _document renders ctx.renderPage with enhanceApp correctly",
"Document and App - Rendering via HTTP _document renders ctx.renderPage with enhanceComponent correctly",
"Document and App - Rendering via HTTP _document renders ctx.renderPage with enhancer correctly",
"Document and App - Rendering via HTTP _document should include required elements in rendered html"
],
"failed": [],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/e2e/async-modules/index.test.ts": {
"passed": [
"Async modules can render async 404 pages",
Expand Down Expand Up @@ -8859,34 +8913,6 @@
"flakey": [],
"runtimeError": false
},
"test/integration/app-document/test/index.test.js": {
"passed": [
"Document and App Client side It should share module state with pages",
"Document and App Client side should detect the changes to pages/_document.js and display it",
"Document and App Client side should keep state between page navigations",
"Document and App Rendering via HTTP _app It should share module state with pages",
"Document and App Rendering via HTTP _app It should show valid error when thrown in _app getInitialProps",
"Document and App Rendering via HTTP _app It shows a custom tag",
"Document and App Rendering via HTTP _document Document.getInitialProps returns html prop representing app shell",
"Document and App Rendering via HTTP _document It adds a timestamp to link tags with preload attribute to invalidate the cache (DEV only)",
"Document and App Rendering via HTTP _document It adds crossOrigin to all scripts and preload links",
"Document and App Rendering via HTTP _document It adds nonces to all scripts and preload links",
"Document and App Rendering via HTTP _document It renders ctx.renderPage with enhanceApp and enhanceComponent correctly",
"Document and App Rendering via HTTP _document It renders ctx.renderPage with enhanceApp correctly",
"Document and App Rendering via HTTP _document It renders ctx.renderPage with enhanceComponent correctly",
"Document and App Rendering via HTTP _document It renders ctx.renderPage with enhancer correctly",
"Document and App Rendering via HTTP _document should include required elements in rendered html",
"Document and App With CSP enabled should load inline script by hash",
"Document and App With CSP enabled should load inline script by nonce",
"Document and App should not have any missing key warnings"
],
"failed": [
"Document and App Client side should detect the changes to pages/_app.js and display it"
],
"pending": [],
"flakey": [],
"runtimeError": false
},
"test/integration/app-dynamic-error/test/index.test.ts": {
"passed": [
"app-dynamic-error production mode throws an error when prerendering a page with config dynamic error"
Expand Down Expand Up @@ -9709,7 +9735,10 @@
"Valid CSS Module Usage from within node_modules production mode should have compiled successfully",
"Valid CSS Module Usage from within node_modules production mode should've emitted a single CSS file",
"Valid CSS Module Usage from within node_modules production mode should've prerendered with relevant data",
"Valid Nested CSS Module Usage from within node_modules production mode should've prerendered with relevant data"
"Valid Nested CSS Module Usage from within node_modules production mode should've prerendered with relevant data",
"cssmodules-pure-no-check usage should apply styles correctly",
"cssmodules-pure-no-check usage should have compiled successfully",
"cssmodules-pure-no-check usage should've emitted a CSS file"
],
"failed": [
"CSS Module Composes Usage (Basic) production mode should've emitted a single CSS file",
Expand Down Expand Up @@ -14140,6 +14169,7 @@
"Image Optimizer config checks should error when images.loader is assigned but images.path is not",
"Image Optimizer config checks should error when images.loaderFile does not exist",
"Image Optimizer config checks should error when images.minimumCacheTTL is not valid",
"Image Optimizer config checks should error when images.remotePatterns URL has invalid protocol",
"Image Optimizer config checks should error when images.remotePatterns is invalid",
"Image Optimizer config checks should error when images.unoptimized is not a boolean",
"Image Optimizer config checks should error when loader contains invalid value",
Expand Down Expand Up @@ -16028,6 +16058,7 @@
},
"test/integration/next-image-new/unicode/test/index.test.ts": {
"passed": [
"Image Component Unicode Image URL production mode should build correct images-manifest.json",
"Image Component Unicode Image URL production mode should load external image with space",
"Image Component Unicode Image URL production mode should load external unicode image",
"Image Component Unicode Image URL production mode should load internal image with space",
Expand Down
Loading