From b1d2d68514997e587bb8dbc06c1272214c8ea633 Mon Sep 17 00:00:00 2001 From: Enrique pando Date: Fri, 19 Jan 2024 23:40:45 -0600 Subject: [PATCH] docs: fix typo --- 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 }) => {})