Skip to content

Commit

Permalink
test: skip test-runner-watch-mode on IBMi
Browse files Browse the repository at this point in the history
PR-URL: #48473
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Nitzan Uziely <linkgoron@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
  • Loading branch information
MoLow authored and ruyadorno committed Sep 12, 2023
1 parent 07065d0 commit 8fdd4c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/parallel/test-runner-watch-mode.mjs
@@ -1,12 +1,16 @@
// Flags: --expose-internals
import '../common/index.mjs';
import * as common from '../common/index.mjs';
import path from 'node:path';
import { describe, it } from 'node:test';
import { spawn } from 'node:child_process';
import { writeFileSync } from 'node:fs';
import util from 'internal/util';
import tmpdir from '../common/tmpdir.js';


if (common.isIBMi)
common.skip('IBMi does not support `fs.watch()`');

tmpdir.refresh();

// This test updates these files repeatedly,
Expand Down

0 comments on commit 8fdd4c5

Please sign in to comment.