summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWinnie Hellmann <winnie@gitlab.com>2018-10-25 12:50:04 +0200
committerWinnie Hellmann <winnie@gitlab.com>2018-10-26 09:31:01 +0200
commit5f61742be15892579dea892cd7b5d128e6bec4ca (patch)
tree5d0006a4b74f54b0cc008d0a517b967b687d2f19
parent63049497b8766b3fd15534011abfd6693273b224 (diff)
downloadgitlab-ce-5f61742be15892579dea892cd7b5d128e6bec4ca.tar.gz
Remove section about types of tests
-rw-r--r--doc/development/new_fe_guide/development/testing.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/development/new_fe_guide/development/testing.md b/doc/development/new_fe_guide/development/testing.md
index 11b141bbff0..0afb4874ffd 100644
--- a/doc/development/new_fe_guide/development/testing.md
+++ b/doc/development/new_fe_guide/development/testing.md
@@ -267,20 +267,6 @@ expect(page).not_to have_selector('.card')
## Test helpers
----
-
-> TODO: update the following sections
-
----
-
-## Types of tests in our codebase
-
-* **RSpec**
- * **[Ruby unit tests](#ruby-unit-tests-spec-rb)** for models, controllers, helpers, etc. (`/spec/**/*.rb`)
- * **[Full feature tests](#full-feature-tests-spec-features-rb)** (`/spec/features/**/*.rb`)
-* **[Karma](#karma-tests-spec-javascripts-js)** (`/spec/javascripts/**/*.js`)
-* <s>Spinach</s> — These have been removed from our codebase in May 2018. (`/features/`)
-
#### Vuex Helper: `testAction`
We have a helper available to make testing actions easier, as per [official documentation](https://vuex.vuejs.org/en/testing.html):