Skip to content

Commit 4352bf6

Browse files
marco-ippolitoaduh95
authored andcommitted
test: check typescript loader
PR-URL: #54657 Refs: #54645 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Zeyu "Alex" Yang <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent 53b29b0 commit 4352bf6

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

test/es-module/test-typescript.mjs

+26
Original file line numberDiff line numberDiff line change
@@ -412,3 +412,29 @@ test('expect error when executing a TypeScript file with generics', async () =>
412412
strictEqual(result.stdout, '');
413413
strictEqual(result.code, 1);
414414
});
415+
416+
test('execute a TypeScript loader and a .ts file', async () => {
417+
const result = await spawnPromisified(process.execPath, [
418+
'--experimental-strip-types',
419+
'--no-warnings',
420+
'--import',
421+
fixtures.fileURL('typescript/ts/test-loader.ts'),
422+
fixtures.path('typescript/ts/test-typescript.ts'),
423+
]);
424+
strictEqual(result.stderr, '');
425+
match(result.stdout, /Hello, TypeScript!/);
426+
strictEqual(result.code, 0);
427+
});
428+
429+
test('execute a TypeScript loader and a .js file', async () => {
430+
const result = await spawnPromisified(process.execPath, [
431+
'--experimental-strip-types',
432+
'--no-warnings',
433+
'--import',
434+
fixtures.fileURL('typescript/ts/test-loader.ts'),
435+
fixtures.path('typescript/ts/test-simple.js'),
436+
]);
437+
strictEqual(result.stderr, '');
438+
match(result.stdout, /Hello, TypeScript!/);
439+
strictEqual(result.code, 0);
440+
});

test/fixtures/typescript/ts/hook.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import type { ResolveHook } from 'node:module';
2+
3+
// Pass through
4+
export const resolve: ResolveHook = async function resolve(specifier, context, nextResolve) {
5+
if(false){
6+
// https://github.com/nodejs/node/issues/54645
7+
// A bug in the typescript parsers swc causes
8+
// the next line to not be parsed correctly
9+
}
10+
return nextResolve(specifier, context);
11+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { register } from 'node:module';
2+
import * as fixtures from '../../../common/fixtures.mjs';
3+
4+
register(fixtures.fileURL('typescript/ts/hook.ts'));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
const str = "Hello, TypeScript!";
2+
console.log(str);

0 commit comments

Comments
 (0)