mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
# Conflicts: # src/og/entity/Entity.js # src/og/math/Mat4.js # src/og/webgl/Handler.js # src/og/webgl/callbacks.js # tests/Globe.test.js
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
import { Material } from "../../src/og/layer/Material";
|
|
|
|
test("Testing Material", () => {
|
|
const material = new Material("name", {});
|
|
expect(material).toBeTruthy();
|
|
});
|