mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
remove jsdocs directory and use doc generation from config and package parallelize build pipeline and make it faster remove .vscode update dependencies fix vulnerability remove fonts dependencies nad make it from npx fix vulnerability in code
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
import { Worker } from "./worker";
|
|
|
|
window.Worker = Worker;
|
|
|
|
|
|
global.URL.createObjectURL = jest.fn(() => "");
|
|
/**
|
|
* TODO
|
|
* mock is not supported webgl2 context?
|
|
* TypeError: gl.vertexAttribDivisor is not a function
|
|
*/
|
|
test("Testing Globe", () => {
|
|
// const globe = new Globe({ target: 'div' });
|
|
// expect(globe).toBeTruthy();
|
|
});
|