mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
* move cli service-container to new folder * fix imports * add tsconfig and fix type issues in other services * fix more imports in service-container * make ts server happy in service-container * fix actual bugs in cli service-container * fix package json reference path * fix service-container import * update type on cipher service
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { ServiceContainer } from "./service-container";
|
|
|
|
describe("ServiceContainer", () => {
|
|
it("instantiates", async () => {
|
|
expect(() => new ServiceContainer()).not.toThrow();
|
|
});
|
|
});
|