From 5fcdd5eb4604dcdea36e98c2ce924c581749071f Mon Sep 17 00:00:00 2001 From: James Vaughan Date: Sat, 26 Oct 2024 16:14:58 -0700 Subject: [PATCH] docs: typo fix in model-based-testing.md --- 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.