24 lines
440 B
TypeScript
24 lines
440 B
TypeScript
import {init, Vector3, World} from "../builds/3d-deterministic/pkg";
|
|
|
|
describe("3d/World", () => {
|
|
let world: World;
|
|
|
|
beforeAll(init);
|
|
|
|
afterAll(async () => {
|
|
await Promise.resolve();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
world = new World(new Vector3(0, 9.8, 0));
|
|
});
|
|
|
|
afterEach(() => {
|
|
world.free();
|
|
});
|
|
|
|
test("constructor", () => {
|
|
expect(world.colliders.len()).toBe(0);
|
|
});
|
|
});
|