Skip to content

Commit

Permalink
update standalone sourcemap test
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Jul 24, 2014
1 parent 3a6429c commit 8b334bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/standalone_sourcemap.js
Expand Up @@ -20,7 +20,7 @@ test('standalone in debug mode', function (t) {
window: {},
done : done(t)
};
vm.runInNewContext(src + 'window.standTest(done)', c);
vm.runInNewContext(src + '\nwindow.standTest(done)', c);
});
t.test('CommonJS', function (t) {
t.plan(2);
Expand All @@ -30,7 +30,7 @@ test('standalone in debug mode', function (t) {
exports: exp,
done : done(t)
};
vm.runInNewContext(src + 'module.exports(done)', c);
vm.runInNewContext(src + '\nmodule.exports(done)', c);
});
t.test('RequireJS', function (t) {
t.plan(2);
Expand Down

0 comments on commit 8b334bb

Please sign in to comment.