1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 05:00:10 +00:00
Files
browser/libs/logout/src/logout.spec.ts
2025-06-03 18:31:38 -04:00

9 lines
196 B
TypeScript

import * as lib from "./index";
describe("logout", () => {
// This test will fail until something is exported from index.ts
it("should work", () => {
expect(lib).toBeDefined();
});
});