mirror of https://github.com/embarklabs/embark.git
remove spec from boilerplate
This commit is contained in:
parent
99f5d38f1f
commit
8f9d532a7c
|
@ -1,17 +0,0 @@
|
||||||
EmbarkSpec = require('embark-framework').Tests;
|
|
||||||
|
|
||||||
describe("SimpleStorage", function() {
|
|
||||||
beforeAll(function() {
|
|
||||||
SimpleStorage = EmbarkSpec.request("SimpleStorage", [150]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("should set constructor value", function() {
|
|
||||||
expect(SimpleStorage.foo()).toEqual('150');
|
|
||||||
});
|
|
||||||
|
|
||||||
it("set storage value", function() {
|
|
||||||
SimpleStorage.set(100);
|
|
||||||
expect(SimpleStorage.get()).toEqual('100');
|
|
||||||
});
|
|
||||||
|
|
||||||
})
|
|
Loading…
Reference in New Issue