mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
* refactor(platform): generate a storage-test-utils library * refactor(storage-test-utils): move FakeStorageService out of common
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import * as lib from "./index";
|
|
|
|
describe("storage-test-utils", () => {
|
|
// This test will fail until something is exported from index.ts
|
|
it("should work", () => {
|
|
expect(lib).toBeDefined();
|
|
});
|
|
});
|