mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
|
import { PasswordHistoryView } from "@bitwarden/common/models/view/passwordHistoryView";
|
||
|
|
||
|
describe("PasswordHistoryView", () => {
|
||
|
it("fromJSON initializes nested objects", () => {
|
||
|
const lastUsedDate = new Date();
|
||
|
|
||
|
const actual = PasswordHistoryView.fromJSON({
|
||
|
lastUsedDate: lastUsedDate.toISOString(),
|
||
|
});
|
||
|
|
||
|
expect(actual.lastUsedDate).toEqual(lastUsedDate);
|
||
|
});
|
||
|
});
|