13 lines
207 B
JavaScript
Raw Normal View History

2015-06-13 09:21:29 -04:00
var Tests = require('embark-framework').Tests;
2015-06-14 21:38:00 -04:00
SimpleStorage = Tests.request("SimpleStorage", 150);
2015-06-09 07:57:19 -04:00
2015-06-12 23:02:54 -04:00
SimpleStorage.set(100);
2015-06-09 07:57:19 -04:00
2015-06-12 23:02:54 -04:00
a = SimpleStorage.get()
console.log(a)
2015-06-09 07:57:19 -04:00
2015-06-14 21:38:00 -04:00
a = SimpleStorage.foo()
console.log(a)