mirror of
https://github.com/moparisthebest/mail
synced 2024-11-10 19:25:03 -05:00
20 lines
367 B
JavaScript
20 lines
367 B
JavaScript
define(function() {
|
|
'use strict';
|
|
|
|
var expect = chai.expect;
|
|
|
|
describe('Cloudstorage DAO unit tests', function() {
|
|
|
|
beforeEach(function() {});
|
|
|
|
afterEach(function() {});
|
|
|
|
describe('init', function() {
|
|
it('should not explode', function() {
|
|
expect(true).to.be.ok;
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
}); |