docs(testing): fix typo in snapshot (#5994)

This commit is contained in:
Caleb Cox 2024-09-16 17:46:48 -05:00 committed by GitHub
parent 05b6d7eedd
commit c8cda14bdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -525,7 +525,7 @@ class AssertSnapshotContext {
/**
* Make an assertion that `actual` matches a snapshot. If the snapshot and `actual` do
* not a match, then throw.
* not match, then throw.
*
* Type parameter can be specified to ensure values under comparison have the same type.
*
@ -549,7 +549,7 @@ export async function assertSnapshot<T>(
): Promise<void>;
/**
* Make an assertion that `actual` matches a snapshot. If the snapshot and `actual` do
* not a match, then throw.
* not match, then throw.
*
* Type parameter can be specified to ensure values under comparison have the same type.
*