diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-03-19 11:46:55 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2019-03-19 22:19:05 +0100 |
commit | 4fca4b79f5a9fa536bb0148e915dd918b42022f1 (patch) | |
tree | d36deef001e294a0544a498d25830aabe1b1a877 /doc | |
parent | 79fd1b7efd08875cf7df175fc3aa646190e1023f (diff) | |
download | gitlab-ce-4fca4b79f5a9fa536bb0148e915dd918b42022f1.tar.gz |
Update docs on running frontend tests
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/testing_guide/frontend_testing.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/doc/development/testing_guide/frontend_testing.md b/doc/development/testing_guide/frontend_testing.md index d4a2ac246c4..11cf44e747a 100644 --- a/doc/development/testing_guide/frontend_testing.md +++ b/doc/development/testing_guide/frontend_testing.md @@ -228,14 +228,12 @@ See this [section][vue-test]. ### Running frontend tests -`rake karma` runs the frontend-only (JavaScript) tests. -It consists of two subtasks: +For running the frontend tests, you need the following commands: -- `rake karma:fixtures` (re-)generates fixtures -- `rake karma:tests` actually executes the tests +- `rake karma:fixtures` (re-)generates fixtures. +- `yarn test` executes the tests. -As long as the fixtures don't change, `rake karma:tests` (or `yarn karma`) -is sufficient (and saves you some time). +As long as the fixtures don't change, `yarn test` is sufficient (and saves you some time). ### Live testing and focused testing |