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

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