mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import { bootstrap } from "../Bootstrap";
|
|
bootstrap();
|
|
|
|
import { StateService } from "../../src/state/StateService";
|
|
import { State } from "../../src/state/State";
|
|
|
|
describe("StateService.ctor", () => {
|
|
it("should be contructed", () => {
|
|
let stateService: StateService = new StateService(State.Traversing);
|
|
|
|
expect(stateService).toBeDefined();
|
|
});
|
|
});
|