13 lines
384 B
JavaScript
13 lines
384 B
JavaScript
/*globals describe, beforeEach, afterEach, it*/
|
|
var should = require('should'),
|
|
sinon = require('sinon'),
|
|
when = require('when'),
|
|
|
|
// Stuff we are testing
|
|
frontend = require('../../server/controllers/frontend');
|
|
|
|
describe('Frontend Controller', function () {
|
|
describe('homepage', function () {
|
|
// No tests yet, shows up in coverage report
|
|
});
|
|
}); |