mapillary-js/test/state/StateService.test.ts
2021-03-27 18:34:32 +01:00

13 lines
313 B
TypeScript

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