From 000bf1261b15663ce7982b2d985c19dd3c398079 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 11 Apr 2024 20:33:51 +0200 Subject: [PATCH] docs(mock): fix typo Signed-off-by: Max Schmitt --- docs/src/mock.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/mock.md b/docs/src/mock.md index b3ad4c860f..bd0c4e5c54 100644 --- a/docs/src/mock.md +++ b/docs/src/mock.md @@ -109,7 +109,7 @@ Sometimes, it is essential to make an API request, but the response needs to be allow for reproducible testing. In that case, instead of mocking the request, one can perform the request and fulfill it with the modified response. -In the example below we intercept the call to the fruit API and add a new fruit called 'playwright', to the data. We then go to the url and assert that this data is there: +In the example below we intercept the call to the fruit API and add a new fruit called 'Loquat', to the data. We then go to the url and assert that this data is there: ```js