Browse Source

Tests: Remove outdated unit test.

Mugen87 5 years ago
parent
commit
10e4ac22b1
1 changed files with 0 additions and 10 deletions
  1. 0 10
      test/unit/src/core/InterleavedBuffer.tests.js

+ 0 - 10
test/unit/src/core/InterleavedBuffer.tests.js

@@ -92,16 +92,6 @@ export default QUnit.module( 'Core', () => {
 
 		} );
 
-		QUnit.test( "clone", ( assert ) => {
-
-			var array = new Float32Array( [ 1, 2, 3, 7, 8, 9 ] );
-			var instance = new InterleavedBuffer( array, 3 );
-			instance.setUsage( DynamicDrawUsage );
-
-			checkInstanceAgainstCopy( instance, instance.clone(), assert );
-
-		} );
-
 		QUnit.test( "onUpload", ( assert ) => {
 
 			var a = new InterleavedBuffer();