Skip to content

Commit 412cc73

Browse files
committed
fixup!
1 parent a093674 commit 412cc73

13 files changed

Lines changed: 29 additions & 292 deletions

β€Žtest/addons/repl-domain-abort/binding.ccβ€Ž

Lines changed: 0 additions & 50 deletions
This file was deleted.

β€Žtest/addons/repl-domain-abort/binding.gypβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Žtest/addons/repl-domain-abort/test.jsβ€Ž

Lines changed: 0 additions & 70 deletions
This file was deleted.

β€Žtest/es-module/test-esm-repl-imports.jsβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
'use strict';
22

3-
const { mustCall } = require('../common');
3+
const { mustCall, skipIfInspectorDisabled } = require('../common');
4+
5+
skipIfInspectorDisabled();
6+
47
const fixtures = require('../common/fixtures');
58
const assert = require('node:assert');
69
const { spawn } = require('node:child_process');

β€Žtest/es-module/test-esm-repl.jsβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
'use strict';
22
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
36
const assert = require('assert');
47
const { spawn } = require('child_process');
58

β€Žtest/parallel/test-cwd-enoent-repl.jsβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
'use strict';
22
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
36
// Fails with EINVAL on SmartOS, EBUSY on Windows, EBUSY on AIX.
47
if (common.isSunOS || common.isWindows || common.isAIX || common.isIBMi) {
58
common.skip('cannot rmdir current working directory');

β€Žtest/parallel/test-force-repl-with-eval.jsβ€Ž

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
'use strict';
2-
require('../common');
2+
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
36
const assert = require('assert');
47
const spawn = require('child_process').spawn;
58

β€Žtest/parallel/test-force-repl.jsβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
'use strict';
22
const common = require('../common');
3+
4+
common.skipIfInspectorDisabled();
5+
36
const assert = require('assert');
47
const spawn = require('child_process').spawn;
58

β€Žtest/parallel/test-preload.jsβ€Ž

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
'use strict';
22

33
const common = require('../common');
4+
5+
common.skipIfInspectorDisabled();
6+
47
const fixtures = require('../common/fixtures');
58
// Refs: https://github.com/nodejs/node/pull/2253
69
if (common.isSunOS)

β€Žtest/parallel/test-repl-preview-without-inspector.jsβ€Ž

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
Β (0)