mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
15 lines
259 B
JavaScript
15 lines
259 B
JavaScript
'use strict';
|
|
|
|
describe('main', () => {
|
|
let main, component;
|
|
|
|
beforeEach(() => {
|
|
main = require('components/main.jsx');
|
|
component = main();
|
|
});
|
|
|
|
it('should create a new instance of main', () => {
|
|
expect(component).toBeDefined();
|
|
});
|
|
});
|