From ffc430ee87de298bf2c69bfea4a7737f9dd7b637 Mon Sep 17 00:00:00 2001 From: Andras Mihaly Date: Fri, 16 May 2025 18:09:46 -0700 Subject: [PATCH] Fix a handful of grammatical errors on integration testing page --- docs/tests/types/integration-tests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tests/types/integration-tests.md b/docs/tests/types/integration-tests.md index eaa35a9..1154d88 100644 --- a/docs/tests/types/integration-tests.md +++ b/docs/tests/types/integration-tests.md @@ -5,7 +5,7 @@ sidebar_position: 4 # Integration Tests An integration test is a test that measures the interaction of multiple systems -or parts of your application. They are meant to aspects like the requests and responses coming back from the server, data that ahs changed, business objects that has implemented. We’re not looking to testpage interactivity here, thats can be found in the [end to end tests](../types/e2e-tests.md). +or parts of your application. They are meant to test aspects like the requests and responses coming back from the server, data that has changed and business objects that have been implemented. We’re not looking to test page interactivity here, that can be found in the [end to end tests](../types/e2e-tests.md). Integration tests can be found in the directory `spec/requests`.