mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-14 17:24:58 +00:00
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
var Tests = require('embark-framework').Tests;
|
|
|
|
SimpleStorage = Tests.request("SimpleStorage", 150);
|
|
|
|
SimpleStorage.set(100);
|
|
|
|
a = SimpleStorage.get()
|
|
console.log(a)
|
|
|
|
a = SimpleStorage.foo()
|
|
console.log(a)
|
|
|