Simon Bailey fb2e98d63e Project test configuration and updated README
Signed-off-by: Simon Bailey <simon@newtriks.com>
2014-01-08 11:10:07 +00:00

15 lines
378 B
JavaScript

'use strict';
describe('<%= classedName %>', function () {
var <%= classedName %>, component;
beforeEach(function () {
<%= classedName %> = require('../../../src/scripts/components/<%= classedName %>');
component = <%= classedName %>();
});
it('should create a new instance of <%= classedName %>', function () {
expect(component).toBeDefined();
});
});