mapillary-js/test/state/StateService.test.ts
Oscar Lorentzon 615136007d feat: use geometry to avoid reference reset
When larger tile sizes are used the reference
should not be reset if it is within the original
grid.
2024-10-16 11:41:13 -07:00

15 lines
473 B
TypeScript

import { bootstrap } from "../Bootstrap";
bootstrap();
import { StateService } from "../../src/state/StateService";
import { State } from "../../src/state/State";
import { S2GeometryProvider } from "../../src/api/S2GeometryProvider";
describe("StateService.ctor", () => {
it("should be contructed", () => {
let stateService: StateService = new StateService(State.Traversing, new S2GeometryProvider());
expect(stateService).toBeDefined();
});
});