mail/test/new-unit/app-controller-test.js

20 lines
365 B
JavaScript
Raw Normal View History

define(function() {
'use strict';
var expect = chai.expect;
describe('App Controller unit tests', function() {
beforeEach(function() {});
afterEach(function() {});
describe('init', function() {
it('should not explode', function() {
expect(true).to.be.ok;
});
});
});
});