1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 22:03:36 +00:00
Files
browser/libs/messaging/src/messaging.spec.ts
2025-07-22 11:47:25 -04:00

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();
});
});