mirror of
https://github.com/bitwarden/browser
synced 2026-03-01 19:11:22 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import * as lib from "./index";
|
|
|
|
describe("messaging-internal", () => {
|
|
// This test will fail until something is exported from index.ts
|
|
it("should work", () => {
|
|
expect(lib).toBeDefined();
|
|
});
|
|
});
|