summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2018-11-13 12:31:36 +0000
committerWinnie Hellmann <winnie@gitlab.com>2018-11-13 12:31:36 +0000
commit921d867806c6edeb06227f69bff8d87bbf255ea9 (patch)
treeb6ad0db99a4e746224962a7827e3da6e30ca3274
parent245e5e60a620f7dcb7081cda7db13040335c1e1d (diff)
downloadgitlab-ce-921d867806c6edeb06227f69bff8d87bbf255ea9.tar.gz
Replace "need not" with "don't"
-rw-r--r--doc/development/new_fe_guide/development/testing.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/new_fe_guide/development/testing.md b/doc/development/new_fe_guide/development/testing.md
index cc0f62ba825..633a48b41df 100644
--- a/doc/development/new_fe_guide/development/testing.md
+++ b/doc/development/new_fe_guide/development/testing.md
@@ -54,7 +54,7 @@ Unit tests are on the lowest abstraction level and typically test functionality
<details>
<summary>Vue components</summary>
- Computed properties, methods, and lifecycle hooks can be considered an implementation detail of components and need not be tested.
+ Computed properties, methods, and lifecycle hooks can be considered an implementation detail of components and don't need to be tested.
They are implicitly covered by component tests.
The <a href="https://vue-test-utils.vuejs.org/guides/#getting-started">official guidelines</a> suggest the same.
</details>