mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
This is needed since all storage in manifest v3 is key-value-pair-based and session storage of most data is actually serialized into an encrypted string.
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import { AccountProfile } from "./account";
|
|
|
|
describe("AccountProfile", () => {
|
|
describe("fromJSON", () => {
|
|
it("should deserialize to an instance of itself", () => {
|
|
expect(AccountProfile.fromJSON({})).toBeInstanceOf(AccountProfile);
|
|
});
|
|
});
|
|
});
|