29 lines
822 B
JavaScript
29 lines
822 B
JavaScript
var Filer = require('../../../src');
|
|
var expect = require('chai').expect;
|
|
|
|
describe('Filer.FileSystem.providers', function() {
|
|
it('is defined', function() {
|
|
expect(Filer.FileSystem.providers).to.exist;
|
|
});
|
|
|
|
it('has IndexedDB constructor', function() {
|
|
expect(Filer.FileSystem.providers.IndexedDB).to.be.a('function');
|
|
});
|
|
|
|
it('has WebSQL constructor', function() {
|
|
expect(Filer.FileSystem.providers.WebSQL).to.be.a('function');
|
|
});
|
|
|
|
it('has Memory constructor', function() {
|
|
expect(Filer.FileSystem.providers.Memory).to.be.a('function');
|
|
});
|
|
|
|
it('has a Default constructor', function() {
|
|
expect(Filer.FileSystem.providers.Default).to.be.a('function');
|
|
});
|
|
|
|
it('has Fallback constructor', function() {
|
|
expect(Filer.FileSystem.providers.Fallback).to.be.a('function');
|
|
});
|
|
});
|