13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
|
define(["Filer"], function(Filer) {
|
||
|
|
||
|
describe("Filer", function() {
|
||
|
it("is defined", function() {
|
||
|
expect(typeof Filer).not.toEqual(undefined);
|
||
|
});
|
||
|
|
||
|
it("has FileSystem constructor", function() {
|
||
|
expect(typeof Filer.FileSystem).toEqual('function');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|