diff --git a/website/docs/documentation/helpers/only.mdx b/website/docs/documentation/helpers/only.mdx index 945b43d6..6f4f2a00 100644 --- a/website/docs/documentation/helpers/only.mdx +++ b/website/docs/documentation/helpers/only.mdx @@ -277,9 +277,9 @@ Why isn't `it.only` executed in the following example? ```ts describe(() => { - // it.only(() => { - // // ... ❌ - // }); + it.only(() => { + // ... ❌ + }); }); ```