From bb4c86088c89a43153d93fd5ea53bce04e3e1422 Mon Sep 17 00:00:00 2001 From: James Vaughan Date: Sat, 26 Oct 2024 23:23:42 -0700 Subject: [PATCH] =?UTF-8?q?=20=F0=9F=93=9D=20Typo=20fix=20in=20model-based?= =?UTF-8?q?-testing.md=20(#5369)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is just a small typo fix in one of the documentation pages. Thanks for maintaining this library! --- website/docs/advanced/model-based-testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/advanced/model-based-testing.md b/website/docs/advanced/model-based-testing.md index 18dc2f292d3..71fed9f3272 100644 --- a/website/docs/advanced/model-based-testing.md +++ b/website/docs/advanced/model-based-testing.md @@ -8,7 +8,7 @@ Turn fast-check into a crazy QA ## Overview -Model-based testing can also be referred to as[Monkey testing](https://en.wikipedia.org/wiki/Monkey_testing) to some extend. The basic concept is to put our system under stress by providing it with random inputs. With model-based testing, we compare our system to a highly simplified version of it: the model. +Model-based testing can also be referred to as [Monkey testing](https://en.wikipedia.org/wiki/Monkey_testing) to some extent. The basic concept is to put our system under stress by providing it with random inputs. With model-based testing, we compare our system to a highly simplified version of it: the model. :::info The model, a optional helper While the model part can assist you in writing your tests by storing intermediate states, past actions, or even mimicking the system, it is entirely optional. Model-based testing can be performed without it as well.