1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-02 11:31:44 +00:00

generate serialization library

This commit is contained in:
addisonbeck
2025-07-18 20:28:02 -04:00
parent fe1c040993
commit baf413ce5f
14 changed files with 120 additions and 0 deletions

View File

View File

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