mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-25 21:51:30 +01:00
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();
|
||
|
});
|
||
|
});
|