@@ -315,7 +315,7 @@ it(`should use hash from env even when "devEngines" defines a different one`, as
315315} ) ;
316316
317317it ( `should use hash from env even when ".corepack.env" defines a different one` , async t => {
318- // Skip rest of the test on Node.js 18.x as it lacks support for .env files.
318+ // Skip that test on Node.js 18.x as it lacks support for .env files.
319319 if ( process . version . startsWith ( `v18.` ) ) t . skip ( ) ;
320320
321321 await xfs . mktempPromise ( async cwd => {
@@ -340,7 +340,7 @@ it(`should use hash from env even when ".corepack.env" defines a different one`,
340340
341341describe ( `should accept range in devEngines only if a specific version is provided` , ( ) => {
342342 it ( `either in .corepack.env` , async t => {
343- // Skip rest of the test on Node.js 18.x as it lacks support for .env files.
343+ // Skip that test on Node.js 18.x as it lacks support for .env files.
344344 if ( process . version . startsWith ( `v18.` ) ) t . skip ( ) ;
345345
346346 await xfs . mktempPromise ( async cwd => {
@@ -368,7 +368,7 @@ describe(`should accept range in devEngines only if a specific version is provid
368368 } ) ;
369369 } ) ;
370370 it ( `either in a different env file specified in env` , async t => {
371- // Skip rest of the test on Node.js 18.x as it lacks support for .env files.
371+ // Skip that test on Node.js 18.x as it lacks support for .env files.
372372 if ( process . version . startsWith ( `v18.` ) ) t . skip ( ) ;
373373
374374 await xfs . mktempPromise ( async cwd => {
@@ -455,7 +455,7 @@ describe(`should accept range in devEngines only if a specific version is provid
455455} ) ;
456456
457457it ( `Should use version from correct source` , async t => {
458- // Skip rest of the test on Node.js 18.x as it lacks support for .env files.
458+ // Skip that test on Node.js 18.x as it lacks support for .env files.
459459 if ( process . version . startsWith ( `v18.` ) ) t . skip ( ) ;
460460
461461 await xfs . mktempPromise ( async cwd => {
@@ -497,7 +497,7 @@ it(`Should use version from correct source`, async t => {
497497
498498describe ( `should reject if range in devEngines does not match version provided` , ( ) => {
499499 it ( `in .corepack.env` , async t => {
500- // Skip rest of the test on Node.js 18.x as it lacks support for .env files.
500+ // Skip that test on Node.js 18.x as it lacks support for .env files.
501501 if ( process . version . startsWith ( `v18.` ) ) t . skip ( ) ;
502502
503503 await xfs . mktempPromise ( async cwd => {
0 commit comments