Skip to content

Commit dce5476

Browse files
committed
fixup! fixup! test,debugger: migrate node-inspect tests to core
1 parent 0675754 commit dce5476

16 files changed

+32
-0
lines changed

test/inspector-cli/test-inspector-cli-backtrace.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-break.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-clear-breakpoints.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-exceptions.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-exec-scope.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const assert = require('assert');
1313
const cli = startCLI([fixtures.path('inspector-cli/backtrace.js')]);
1414

1515
function onFatal(error) {
16+
// Print the error first because `cli.quit()` might throw something else.
17+
console.error(`Error received: ${error}`);
1618
cli.quit();
1719
throw error;
1820
}

test/inspector-cli/test-inspector-cli-exec.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const assert = require('assert');
1313
const cli = startCLI([fixtures.path('inspector-cli/alive.js')]);
1414

1515
function onFatal(error) {
16+
// Print the error first because `cli.quit()` might throw something else.
17+
console.error(`Error received: ${error}`);
1618
cli.quit();
1719
throw error;
1820
}

test/inspector-cli/test-inspector-cli-heap-profiler.js

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ const filename = 'node.heapsnapshot';
1919
const cli = startCLI([fixtures.path('inspector-cli/empty.js')]);
2020

2121
function onFatal(error) {
22+
// Print the error first because `cli.quit()` might throw something else.
23+
console.error(`Error received: ${error}`);
2224
cli.quit();
2325
throw error;
2426
}

test/inspector-cli/test-inspector-cli-help.js

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ const assert = require('assert');
1212
const cli = startCLI([fixtures.path('inspector-cli/empty.js')]);
1313

1414
function onFatal(error) {
15+
// Print the error first because `cli.quit()` might throw something else.
16+
console.error(`Error received: ${error}`);
1517
cli.quit();
1618
throw error;
1719
}

test/inspector-cli/test-inspector-cli-low-level.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const assert = require('assert');
1313
const scriptPattern = /^\* (\d+): \S+inspector-cli(?:\/|\\)three-lines\.js/m;
1414

1515
function onFatal(error) {
16+
// Print the error first because `cli.quit()` might throw something else.
17+
console.error(`Error received: ${error}`);
1618
cli.quit();
1719
throw error;
1820
}

test/inspector-cli/test-inspector-cli-preserve-breaks.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-profile.js

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ function delay(ms) {
1717
const cli = startCLI([fixtures.path('inspector-cli/empty.js')]);
1818

1919
function onFatal(error) {
20+
// Print the error first because `cli.quit()` might throw something else.
21+
console.error(`Error received: ${error}`);
2022
cli.quit();
2123
throw error;
2224
}

test/inspector-cli/test-inspector-cli-run-after-quit-restart.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ const path = require('path');
1616
const cli = startCLI([script]);
1717

1818
function onFatal(error) {
19+
// Print the error first because `cli.quit()` might throw something else.
20+
console.error(`Error received: ${error}`);
1921
cli.quit();
2022
throw error;
2123
}

test/inspector-cli/test-inspector-cli-sb-before-load.js

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ const path = require('path');
2020
const cli = startCLI([script]);
2121

2222
function onFatal(error) {
23+
// Print the error first because `cli.quit()` might throw something else.
24+
console.error(`Error received: ${error}`);
2325
cli.quit();
2426
throw error;
2527
}

test/inspector-cli/test-inspector-cli-scripts.js

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ const assert = require('assert');
1414
const cli = startCLI([script]);
1515

1616
function onFatal(error) {
17+
// Print the error first because `cli.quit()` might throw something else.
18+
console.error(`Error received: ${error}`);
1719
cli.quit();
1820
throw error;
1921
}

test/inspector-cli/test-inspector-cli-use-strict.js

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ const assert = require('assert');
1414
const cli = startCLI([script]);
1515

1616
function onFatal(error) {
17+
// Print the error first because `cli.quit()` might throw something else.
18+
console.error(`Error received: ${error}`);
1719
cli.quit();
1820
throw error;
1921
}

test/inspector-cli/test-inspector-cli-watchers.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const assert = require('assert');
1313
const cli = startCLI([fixtures.path('inspector-cli/break.js')]);
1414

1515
function onFatal(error) {
16+
// Print the error first because `cli.quit()` might throw something else.
17+
console.error(`Error received: ${error}`);
1618
cli.quit();
1719
throw error;
1820
}

0 commit comments

Comments
 (0)