mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
25 lines
672 B
JavaScript
25 lines
672 B
JavaScript
// WEBGL-INDEPENDENT TESTS
|
|
// Imports tests for all modules that do not depend on WebGL
|
|
|
|
// Shadertools is a GLSL textual processing library, no actual WebGL dependencies
|
|
import '../modules/shadertools/test';
|
|
|
|
// WEBGL-DEPENDENT TESTS
|
|
|
|
// Import luma debug module to assist with debugging test failures
|
|
import '@luma.gl/debug';
|
|
|
|
// Generic webgl helper modules
|
|
import '../modules/constants/test';
|
|
import '../modules/gltools/test';
|
|
import '../modules/debug/test/';
|
|
|
|
// Main webgl classes
|
|
import '../modules/webgl/test';
|
|
|
|
// luma.gl core module: Test webgl-dependent code now
|
|
import '../modules/engine/test/';
|
|
|
|
// luma.gl sub modules
|
|
import '../modules/experimental/test/';
|