mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 17:26:24 +00:00

Some error messages have changed and the --debugger flag does not exist in V8 anymore. PR-URL: https://github.com/nodejs/node/pull/3351 Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
'use strict';
|
|
// Flags: --debug-code
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
assert.notEqual(process.execArgv.indexOf('--debug-code'), -1);
|