mirror of
https://github.com/visgl/luma.gl.git
synced 2026-01-18 14:03:42 +00:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
// luma.gl, MIT license
|
|
import test from 'tape-promise/tape';
|
|
|
|
const noop = () => {};
|
|
test.onFinish(window.browserTestDriver_finish || noop);
|
|
test.onFailure(window.browserTestDriver_fail || noop);
|
|
|
|
// hack: prevent example imports from starting their own animation loop
|
|
globalThis.website = true;
|
|
|
|
import './modules';
|
|
// import './render/render.spec';
|