From d32fcaa6620466ffd4e16f5bdd46feaa0a7da896 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Wed, 31 Jul 2024 16:45:22 +0900 Subject: [PATCH] docs(testing): mention default serializer (#5590) --- testing/snapshot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/snapshot.ts b/testing/snapshot.ts index 662bb6b69..461de20f5 100644 --- a/testing/snapshot.ts +++ b/testing/snapshot.ts @@ -189,7 +189,7 @@ export type SnapshotOptions = { */ path?: string; /** - * Function to use when serializing the snapshot. + * Function to use when serializing the snapshot. The default is {@linkcode serialize}. */ serializer?: (actual: T) => string; };