mirror of https://github.com/lukechilds/node.git
Browse Source
* remove inspector directory artifacts PR-URL: https://github.com/nodejs/node/pull/16197 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>master
Jon Moss
7 years ago
committed by
Refael Ackermann
31 changed files with 23 additions and 45 deletions
@ -1,16 +0,0 @@ |
|||||
prefix inspector |
|
||||
|
|
||||
# To mark a test as flaky, list the test name in the appropriate section |
|
||||
# below, without ".js", followed by ": PASS,FLAKY". Example: |
|
||||
# sample-test : PASS,FLAKY |
|
||||
|
|
||||
[true] # This section applies to all platforms |
|
||||
|
|
||||
[$system==aix] |
|
||||
test-stop-profile-after-done: PASS, FLAKY |
|
||||
|
|
||||
[$system==win32] |
|
||||
test-bindings : PASS, FLAKY |
|
||||
test-debug-end : PASS, FLAKY |
|
||||
test-stop-profile-after-done: PASS, FLAKY |
|
||||
|
|
@ -1,6 +0,0 @@ |
|||||
import sys, os |
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..')) |
|
||||
import testpy |
|
||||
|
|
||||
def GetConfiguration(context, root): |
|
||||
return testpy.SimpleTestConfiguration(context, root, 'inspector') |
|
@ -1,7 +1,7 @@ |
|||||
'use strict'; |
'use strict'; |
||||
const common = require('../common'); |
const common = require('../common'); |
||||
common.skipIfInspectorDisabled(); |
common.skipIfInspectorDisabled(); |
||||
const { NodeInstance } = require('./inspector-helper.js'); |
const { NodeInstance } = require('../common/inspector-helper.js'); |
||||
|
|
||||
async function runTests() { |
async function runTests() { |
||||
const script = 'setInterval(() => {debugger;}, 60000);'; |
const script = 'setInterval(() => {debugger;}, 60000);'; |
Loading…
Reference in new issue