Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: More refactoring
  • Loading branch information
kunalspathak committed Feb 24, 2017
commit f1a5b6348ee651c8bee19d52fe5bed444f144081
4 changes: 1 addition & 3 deletions test/sequential/test-vm-timeout-rethrow.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ const vm = require('vm');
const spawn = require('child_process').spawn;

if (process.argv[2] === 'child') {
const code = 'let j = 0;\n' +
'while(true);\n' +
'j;';
const code = 'while(true);';

const ctx = vm.createContext();

Expand Down