Skip to content

Commit cfa3cd6

Browse files
committed
test: make test work on windows
1 parent ddece56 commit cfa3cd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-require-esm-with-no-experimental-require-module.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ test('correctly reports errors when an ESM module is required with --no-experime
1111
// const app = require('./app');
1212
// ^
1313

14-
const matchRegex = /package-type-module\/require-esm-error-annotation\/index\.cjs:1[\r?\n]const app = require\('\.\/app'\);[\r?\n]\s{12}\^/;
14+
const matchRegex = /package-type-module[\\/]+require-esm-error-annotation[\\/]+index\.cjs:1[\r?\n]const app = require\('\.\/app'\);[\r?\n]\s{12}\^/;
1515
const fixture = fixtures.path('es-modules/package-type-module/require-esm-error-annotation/index.cjs');
1616
const args = ['--no-experimental-require-module', fixture];
1717

@@ -29,7 +29,7 @@ test('correctly reports error for a longer stack trace', () => {
2929
// require('./app.js')
3030
// ^
3131

32-
const matchRegex = /package-type-module\/require-esm-error-annotation\/longer-stack\.cjs:6[\r?\n]\s{2}require\('\.\/app\.js'\)[\r?\n]\s{2}\^/;
32+
const matchRegex = /package-type-module[\\/]+require-esm-error-annotation[\\/]+longer-stack\.cjs:6[\r?\n]\s{2}require\('\.\/app\.js'\)[\r?\n]\s{2}\^/;
3333
const fixture = fixtures.path('es-modules/package-type-module/require-esm-error-annotation/longer-stack.cjs');
3434
const args = ['--no-experimental-require-module', fixture];
3535

0 commit comments

Comments
 (0)