mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-14 10:26:19 +01:00
12 lines
325 B
TypeScript
12 lines
325 B
TypeScript
import { GENERATOR_SETTINGS } from "./key-definitions";
|
|
|
|
describe("Key definitions", () => {
|
|
describe("GENERATOR_SETTINGS", () => {
|
|
it("should pass through deserialization", () => {
|
|
const value = {};
|
|
const result = GENERATOR_SETTINGS.deserializer(value);
|
|
expect(result).toBe(value);
|
|
});
|
|
});
|
|
});
|