|
@@ -1,6 +1,6 @@
|
|
|
/* global QUnit */
|
|
|
|
|
|
-// import { FogExp2 } from '../../../../src/scenes/FogExp2.js';
|
|
|
+import { FogExp2 } from '../../../../src/scenes/FogExp2.js';
|
|
|
|
|
|
export default QUnit.module( 'Scenes', () => {
|
|
|
|
|
@@ -33,9 +33,13 @@ export default QUnit.module( 'Scenes', () => {
|
|
|
} );
|
|
|
|
|
|
// PUBLIC STUFF
|
|
|
- QUnit.todo( 'isFogExp2', ( assert ) => {
|
|
|
+ QUnit.test( 'isFogExp2', ( assert ) => {
|
|
|
|
|
|
- assert.ok( false, 'everything\'s gonna be alright' );
|
|
|
+ const object = new FogExp2();
|
|
|
+ assert.ok(
|
|
|
+ object.isFogExp2,
|
|
|
+ 'FogExp2.isFogExp2 should be true'
|
|
|
+ );
|
|
|
|
|
|
} );
|
|
|
|