mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
When larger tile sizes are used the reference should not be reset if it is within the original grid.
15 lines
473 B
TypeScript
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();
|
|
});
|
|
});
|