mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
TODO: - App tests - Generator tests - Component generator Signed-off-by: Simon Bailey <simon@newtriks.com>
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
/*global describe, beforeEach, it*/
|
|
'use strict';
|
|
|
|
var assert = require('assert');
|
|
|
|
describe('react-webpack generator', function () {
|
|
it('can be imported without blowing up', function () {
|
|
var app = require('../app');
|
|
assert(app !== undefined);
|
|
});
|
|
});
|