mirror of https://gitee.com/openkylin/nodejs.git
17 lines
463 B
JavaScript
17 lines
463 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const repl = require('repl');
|
|
|
|
testParseREPLKeyword();
|
|
|
|
function testParseREPLKeyword() {
|
|
const server = repl.start({ prompt: '> ' });
|
|
const warn = 'REPLServer.parseREPLKeyword() is deprecated';
|
|
|
|
common.expectWarning('DeprecationWarning', warn, 'DEP0075');
|
|
assert.ok(server.parseREPLKeyword('clear'));
|
|
assert.ok(!server.parseREPLKeyword('tacos'));
|
|
server.close();
|
|
}
|