1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-12 04:05:13 -05:00
mail/test/new-unit/cloudstorage-dao-test.js

20 lines
387 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 fail due to error in imap login', function() {
expect(true).to.be.ok;
});
});
});
});