mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-11 19:40:47 +01:00
b14bb92d78
* Create bit-cli folder with configs * Add bit-cli to workspace * Refactor CLI app structure * services are managed by the ServiceContainer * programs are registered by register(Oss|Bit)Program * the app is bootstrapped by Main * Reapply changes from #9099 * Reapply changes from #8604 * Reapply changes from #9115
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();
|
|
});
|
|
});
|