From 7bdcd065857220dd39d4075685de2ff0296af790 Mon Sep 17 00:00:00 2001 From: Hirako2000 Date: Thu, 23 Mar 2017 04:47:06 +0800 Subject: [PATCH] Add rudimentary test for DynamicGeometryModule #169 --- test/modules.spec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/modules.spec.js b/test/modules.spec.js index 08e042e9b..897e6bdbd 100644 --- a/test/modules.spec.js +++ b/test/modules.spec.js @@ -62,8 +62,11 @@ test('Applying controls modules to app', () => { app.start(); }); -test('DynamicGeometryModule', () => { +describe('DynamicGeometryModule', () => { modules.dym = new WHS.mesh.DynamicGeometryModule(); + test('has false attributes by default', () => { + expect(modules.dym.attributes).toBeFalsy(); + }); }); test('TextureModule', () => {