diff options
Diffstat (limited to 'test/simple/test-script-static-this.js')
-rw-r--r-- | test/simple/test-script-static-this.js | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/simple/test-script-static-this.js b/test/simple/test-script-static-this.js index 302ea65270..e46c4c7536 100644 --- a/test/simple/test-script-static-this.js +++ b/test/simple/test-script-static-this.js @@ -5,12 +5,12 @@ var Script = require('vm').Script; common.globalCheck = false; common.debug('run a string'); -var result = Script.runInThisContext('"passed";'); +var result = Script.runInThisContext('\'passed\';'); assert.equal('passed', result); common.debug('thrown error'); assert.throws(function() { - Script.runInThisContext('throw new Error("test");'); + Script.runInThisContext('throw new Error(\'test\');'); }); hello = 5; @@ -18,18 +18,18 @@ Script.runInThisContext('hello = 2'); assert.equal(2, hello); -common.debug("pass values"); -code = "foo = 1;" - + "bar = 2;" - + "if (typeof baz !== 'undefined') throw new Error('test fail');"; +common.debug('pass values'); +code = 'foo = 1;' + + 'bar = 2;' + + 'if (typeof baz !== \'undefined\') throw new Error(\'test fail\');'; foo = 2; -obj = { foo : 0, baz : 3 }; +obj = { foo: 0, baz: 3 }; var baz = Script.runInThisContext(code); assert.equal(0, obj.foo); assert.equal(2, bar); assert.equal(1, foo); -common.debug("call a function"); -f = function () { foo = 100 }; -Script.runInThisContext("f()"); +common.debug('call a function'); +f = function() { foo = 100 }; +Script.runInThisContext('f()'); assert.equal(100, foo); |