Update core-js to ^0.8.1

This version fixes the error for some environments that
has no `setTimeout`/`setInterval`.
This commit is contained in:
Ryunosuke SATO
2015-04-03 18:38:33 +09:00
parent 20f28aba64
commit c33e84730d
2 changed files with 2 additions and 5 deletions

View File

@@ -12,10 +12,7 @@ suite("browserify", function() {
assert.ok(bundle.length, "bundle output code");
// ensure that the code runs without throwing an exception
vm.runInNewContext("var global = this;\n" + bundle, {
setInterval: function () {},
setTimeout: function () {}
});
vm.runInNewContext("var global = this;\n" + bundle, {});
done();
})
})