Skip to content

Commit 51830bb

Browse files
committed
test: add a SharedArrayBuffer repl test
1 parent 83f9012 commit 51830bb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test/parallel/test-repl-no-sab.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Flags: --no-harmony-sharedarraybuffer
2+
3+
'use strict';
4+
5+
const assert = require('assert');
6+
const repl = require('repl');
7+
8+
// Regression test for https://github.com/nodejs/node/issues/39717.
9+
assert.doesNotThrow(() => {
10+
repl.start();
11+
});

0 commit comments

Comments
 (0)