Files
generator-react-webpack/templates/spec/main.js
T
2014-09-26 14:23:08 +01:00

15 lines
298 B
JavaScript

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