Skip to content

Commit

Permalink
fixup! test: skip TS tests so CI is green
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Dec 17, 2024
1 parent 65fe23e commit 32ea9da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/es-module/test-typescript-transform.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { skip, spawnPromisified } from '../common/index.mjs';
import { skip, spawnPromisified, isInsideDirWithUnusualChars } from '../common/index.mjs';
import * as fixtures from '../common/fixtures.mjs';
import { match, strictEqual } from 'node:assert';
import { test } from 'node:test';

if (!process.config.variables.node_use_amaro) skip('Requires Amaro');

if (common.isInsideDirWithUnusualChars) {
common.skip('expected failure');
if (isInsideDirWithUnusualChars) {
skip('expected failure');
}

test('execute a TypeScript file with transformation enabled', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-runner-cli.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

require('../common');
const common = require('../common');
const assert = require('assert');
const { spawnSync } = require('child_process');
const { join } = require('path');
Expand Down

0 comments on commit 32ea9da

Please sign in to comment.