mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 13:42:20 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
35
web/node_modules/vm-browserify/test/vm.js
generated
vendored
Normal file
35
web/node_modules/vm-browserify/test/vm.js
generated
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
var test = require('tape');
|
||||
var vm = require('../');
|
||||
|
||||
test('vmRunInNewContext', function (t) {
|
||||
t.plan(6);
|
||||
|
||||
t.equal(vm.runInNewContext('a + 5', { a : 100 }), 105);
|
||||
|
||||
(function () {
|
||||
var vars = { x : 10 };
|
||||
t.equal(vm.runInNewContext('x++', vars), 10);
|
||||
t.equal(vars.x, 11);
|
||||
})();
|
||||
|
||||
(function () {
|
||||
var vars = { x : 10 };
|
||||
t.equal(vm.runInNewContext('var y = 3; y + x++', vars), 13);
|
||||
t.equal(vars.x, 11);
|
||||
t.equal(vars.y, 3);
|
||||
})();
|
||||
|
||||
t.end();
|
||||
});
|
||||
|
||||
test('vmRunInContext', function (t) {
|
||||
t.plan(2);
|
||||
|
||||
var context = vm.createContext({ foo: 1 });
|
||||
|
||||
vm.runInContext('var x = 1', context);
|
||||
t.deepEqual(context, { foo: 1, x: 1 });
|
||||
|
||||
vm.runInContext('var y = 1', context);
|
||||
t.deepEqual(context, { foo: 1, x: 1, y: 1 });
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue