openglobus/tests/Globe.test.js
Pavel Sukhodolski 867f0e1487 remove travis pipelines
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
2022-09-02 17:52:46 +03:00

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();
});