From cfd06118730098b9a15540d609d2fa2b598c866e Mon Sep 17 00:00:00 2001 From: Enrique Pando <80338911+Pando58@users.noreply.github.com> Date: Tue, 23 Jan 2024 17:16:26 -0600 Subject: [PATCH] docs: fix typo (#5017) --- docs/guide/test-context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/test-context.md b/docs/guide/test-context.md index d84eaea569de..7de283ea2035 100644 --- a/docs/guide/test-context.md +++ b/docs/guide/test-context.md @@ -151,7 +151,7 @@ const myTest = test.extend({ // todosFn will not run myTest('', () => {}) -myTets('', ({ archive }) => {}) +myTest('', ({ archive }) => {}) // todosFn will run myTest('', ({ todos }) => {})