1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-25 03:43:10 +02:00
bitwarden-browser/libs/common/spec/models/view/passwordHistoryView.spec.ts

14 lines
394 B
TypeScript

import { PasswordHistoryView } from "@bitwarden/common/models/view/password-history.view";
describe("PasswordHistoryView", () => {
it("fromJSON initializes nested objects", () => {
const lastUsedDate = new Date();
const actual = PasswordHistoryView.fromJSON({
lastUsedDate: lastUsedDate.toISOString(),
});
expect(actual.lastUsedDate).toEqual(lastUsedDate);
});
});