Skip to content

Commit cc648ef

Browse files
marco-ippolitoaduh95
authored andcommitted
test: enable ts test on win arm64
PR-URL: #56349 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Jake Yuesong Li <[email protected]>
1 parent 30f61f4 commit cc648ef

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

test/es-module/test-typescript.mjs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { skip, spawnPromisified, isWindows } from '../common/index.mjs';
1+
import { skip, spawnPromisified } from '../common/index.mjs';
22
import * as fixtures from '../common/fixtures.mjs';
33
import { match, strictEqual } from 'node:assert';
44
import { test } from 'node:test';
@@ -359,10 +359,7 @@ test('execute a JavaScript file importing a cjs TypeScript file', async () => {
359359
strictEqual(result.code, 0);
360360
});
361361

362-
// TODO(marco-ippolito) Due to a bug in SWC, the TypeScript loader
363-
// does not work on Windows arm64. This test should be re-enabled
364-
// when https://github.com/nodejs/node/issues/54645 is fixed
365-
test('execute a TypeScript test mocking module', { skip: isWindows && process.arch === 'arm64' }, async () => {
362+
test('execute a TypeScript test mocking module', async () => {
366363
const result = await spawnPromisified(process.execPath, [
367364
'--test',
368365
'--experimental-test-module-mocks',

0 commit comments

Comments
 (0)