mirror of
https://github.com/wassname/generator-react-webpack.git
synced 2026-08-22 12:01:14 +08: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);
|
|
});
|
|
});
|