bitwarden-estensione-browser/libs/common/src/models/domain/account-profile.spec.ts

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