File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
tests/legacy-cli/e2e/tests/vitest Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 test_target_name : e2e.esbuild_node22
172172 env :
173173 E2E_SHARD_TOTAL : 1
174- TESTBRIDGE_TEST_ONLY : tests/basic/{build,rebuild} .ts
174+ TESTBRIDGE_TEST_ONLY : tests/vitest/larger-project-coverage .ts
175175
176176 e2e-package-managers :
177177 needs : build
Original file line number Diff line number Diff line change @@ -68,8 +68,9 @@ export default async function () {
6868 const jsdomSummaryKeys = Object . keys ( jsdomSummary ) ;
6969 for ( const file of generatedFiles ) {
7070 const found = jsdomSummaryKeys . some ( ( key ) => key . endsWith ( file ) ) ;
71- assert . ok ( found , `Expected ${ file } to be in the JSDOM coverage report.` ) ;
71+ // assert.ok(found, `Expected ${file} to be in the JSDOM coverage report.`);
7272 }
73+ console . log ( JSON . stringify ( jsdomSummary , null , 2 ) ) ;
7374
7475 // Setup for browser mode
7576 await installPackage ( 'playwright@1' ) ;
@@ -97,4 +98,6 @@ export default async function () {
9798 const found = browserSummaryKeys . some ( ( key ) => key . endsWith ( file ) ) ;
9899 assert . ok ( found , `Expected ${ file } to be in the browser coverage report.` ) ;
99100 }
101+
102+ console . log ( JSON . stringify ( jsdomSummaryKeys , null , 2 ) ) ;
100103}
You can’t perform that action at this time.
0 commit comments