Skip to content

Commit

Permalink
test: add a SharedArrayBuffer repl test
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Aug 10, 2021
1 parent 83f9012 commit 51830bb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/parallel/test-repl-no-sab.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Flags: --no-harmony-sharedarraybuffer

'use strict';

const assert = require('assert');
const repl = require('repl');

// Regression test for https://github.com/nodejs/node/issues/39717.
assert.doesNotThrow(() => {
repl.start();
});

0 comments on commit 51830bb

Please sign in to comment.