mapillary-js/test/state/StateService.test.ts
2021-04-24 16:12:14 +02:00

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();
});
});