mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
1.1 KiB
1.1 KiB
Suggest using inline snapshots (prefer-inline-snapshots
)
Deprecated
This rule has been deprecated in favor of
no-restricted-matchers
with the following config:
{
"rules": {
"jest/no-restricted-matchers": [
"error",
{
"toThrowErrorMatchingSnapshot": "Use `toThrowErrorMatchingInlineSnapshot()` instead",
"toMatchSnapshot": "Use `toMatchInlineSnapshot()` instead"
}
]
}
}
In order to make snapshot tests more manageable and reviewable
toMatchInlineSnapshot()
and toThrowErrorMatchingInlineSnapshot
should be
used to write the snapshots' inline in the test file.
Rule details
This rule triggers a warning if toMatchSnapshot()
or
toThrowErrorMatchingSnapshot
is used to capture a snapshot.
The following pattern is considered warning:
expect(obj).toMatchSnapshot();
expect(error).toThrowErrorMatchingSnapshot();
The following pattern is not warning:
expect(obj).toMatchInlineSnapshot();
expect(error).toThrowErrorMatchingInlineSnapshot();