1234567891011 |
- /*global describe, beforeEach, it*/
- 'use strict';
- var assert = require('assert');
- describe('threejs-boilerplate generator', function () {
- it('can be imported without blowing up', function () {
- var app = require('../app');
- assert(app !== undefined);
- });
- });
|