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