mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-08-28 12:49:21 +08:00
15 lines
298 B
JavaScript
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();
|
|
});
|
|
});
|