1'use strict'; 2require('../common'); 3 4// This test ensures that the repl does not 5// crash or emit error when throwing `null|undefined` 6// ie `throw null` or `throw undefined`. 7 8const r = require('repl').start(); 9 10// Should not throw. 11r.write('throw null\n'); 12r.write('throw undefined\n'); 13r.write('.exit\n'); 14