mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-08-23 12:10:26 +08:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
'use strict';
|
|
|
|
describe('main', function () {
|
|
var main, component;
|
|
|
|
beforeEach(function () {
|
|
main = require('components/main.jsx');
|
|
component = main();
|
|
});
|
|
|
|
it('should create a new instance of main', function () {
|
|
expect(component).toBeDefined();
|
|
});
|
|
});
|