Page MenuHomeSealhub

datastore.test.js
No OneTemporary

datastore.test.js

var Sealious = require("sealious");
module.exports = {
test_start: function(){
describe("Sealious.Datastore", function(){
it("returns a developer error \"not implemented\"", function(done){
var func = Sealious.Datastore.return_not_implemented("not implemented");
try {
func();
done("It didn't throw an error at all")
}
catch (e) {
if (e.type === "dev_error")
done();
else
done("It didn't throw a proper error");
}
})
})
}
}

File Metadata

Mime Type
text/plain
Expires
Tue, Jul 8, 08:11 (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
810448
Default Alt Text
datastore.test.js (488 B)

Event Timeline