remove spec from boilerplate

This commit is contained in:
Iuri Matias 2015-06-20 08:36:28 -04:00
parent 99f5d38f1f
commit 8f9d532a7c
1 changed files with 0 additions and 17 deletions

View File

@ -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');
});
})