Skip to content

Commit 207d52d

Browse files
authored
docs: typo and brevity (#1097)
1 parent 73ab929 commit 207d52d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Mocha is a JavaScript test framework that is focused on being flexible. Because
5858

5959
### Introduction
6060

61-
To test most Vue components, they must be mounted to the DOM (either virtual or real) in order to fully assert that they are working. This is another framework-agnostic concept. As a result, component testing frameworks were created to give users the ability to do this in a reliable way while also providing Vue-specific conveniences such as integrations for Vuex, Vue Router, and other Vue plugins.
61+
To test most Vue components, they must be mounted to the DOM (either virtual or real) in order to fully assert that they are working. This is another framework-agnostic concept. As a result, component testing frameworks were created to give users the ability to do this reliably while also providing Vue-specific conveniences such as integrations for Vuex, Vue Router, and other Vue plugins.
6262

6363
### Choosing Your Framework
6464

@@ -70,7 +70,7 @@ It should be no surprise that one of the first criteria is that a component test
7070

7171
#### First-class error reporting
7272

73-
When tests fail, it is critical that your component testing framework provides useful error logs that help to minimize the amount of time it takes to debug the problem. In addition to simply telling you what test fails, they should also provides context for why a test fails, e.g., what is expected vs what was received.
73+
When tests fail, it is critical that your component testing framework provides useful error logs that help to minimize the amount of time it takes to debug the problem. In addition to simply telling you what test fails, they should also provide context for why a test fails, e.g., what is expected vs what was received.
7474

7575
### Recommendations
7676

0 commit comments

Comments
 (0)