<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @author TristanVALCKE / https://github.com/Itee
 */
/* global QUnit */

import { VideoTexture } from '../../../../src/textures/VideoTexture';

export default QUnit.module( 'Textures', () =&gt; {

	QUnit.module( 'VideoTexture', () =&gt; {

		// INHERITANCE
		QUnit.todo( "Extending", ( assert ) =&gt; {

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

		} );

		// INSTANCING
		QUnit.todo( "Instancing", ( assert ) =&gt; {

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

		} );

		// PUBLIC STUFF
		QUnit.todo( "isVideoTexture", ( assert ) =&gt; {

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

		} );

	} );

} );
</pre></body></html>