import { describe, test, expect } from "vitest";
import { Serde } from "@daiso-tech/core/serde";
import { SuperJsonSerdeAdapter } from "@daiso-tech/core/serde/adapters";
import { flexibleSerdeTestSuite } from "@daiso-tech/core/serde/test-utilities";
describe("class: Serde", () => {
flexibleSerdeTestSuite({
createSerde: () => new Serde(new SuperJsonSerdeAdapter()),
test,
expect,
});
});
The
flexibleSerdeTestSuite
function simplifies the process of testing your custom implementation ofIFlexibleSerde
withvitest
.IMPORT_PATH:
"@daiso-tech/core/serde/test-utilities"