Sidebar.Geometry.IcosahedronGeometry.tests.js 394 字节
Newer Older
1 2 3 4 5
/**
 * @author TristanVALCKE / https://github.com/Itee
 */
/* global QUnit */

6
import { } from '../../../editor/js/Sidebar.Geometry.IcosahedronGeometry';
7 8 9 10 11 12 13 14 15 16 17 18 19 20

export default QUnit.module( 'Editor', () => {

	QUnit.module.todo( 'Sidebar.Geometry.IcosahedronGeometry', () => {

		QUnit.test( 'write me !', ( assert ) => {

			assert.ok( false, "everything's gonna be alright" );

		} );

	} );

} );