Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
test: Disabled a debugger unit test
Browse files Browse the repository at this point in the history
Disable debugger unit test from running in node-chakracore.

PR-URL: #73
Reviewed-By: Jianchun Xu <Jianchun.Xu@microsoft.com>
  • Loading branch information
kunalspathak committed May 25, 2016
1 parent 6fd464c commit 2048b2c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/sequential/test-debugger-debug-brk.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ var spawn = require('child_process').spawn;

var script = common.fixturesDir + '/empty.js';

if (common.isChakraEngine) {
console.log('1..0 # Skipped: This test is disabled for chakra engine ' +
'because debugger support is not implemented yet.');
return;
}

function fail() {
assert(0); // `node --debug-brk script.js` should not quit
}
Expand Down

0 comments on commit 2048b2c

Please sign in to comment.