summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-eval-scope.js
blob: b9bace5f7d982a37e21a5f4269b09033360d059f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'use strict';
const common = require('../common');
const assert = require('assert');
const repl = require('repl');

{
  const stream = new common.ArrayStream();
  const options = {
    eval: common.mustCall((cmd, context) => {
      assert.strictEqual(cmd, '.scope\n');
      assert.deepStrictEqual(context, {animal: 'Sterrance'});
    }),
    input: stream,
    output: stream,
    terminal: true
  };

  const r = repl.start(options);
  r.context = {animal: 'Sterrance'};

  stream.emit('data', '\t');
  stream.emit('.exit\n');
}