filer/tests/spec/idbfs.spec.js

13 lines
291 B
JavaScript
Raw Normal View History

2013-11-27 17:18:09 +00:00
define(["IDBFS"], function(IDBFS) {
2013-07-26 04:15:48 +00:00
2013-11-27 17:18:09 +00:00
describe("IDBFS", function() {
it("is defined", function() {
expect(typeof IDBFS).not.toEqual(undefined);
});
2013-11-27 17:18:09 +00:00
it("has FileSystem constructor", function() {
expect(typeof IDBFS.FileSystem).toEqual('function');
});
});
2013-11-27 17:18:09 +00:00
});