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