Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
029180f0
Commit
029180f0
authored
Apr 10, 2018
by
Lukas Eipert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add documentation for karma testing with specific files/folders
parent
267602fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
7 deletions
+21
-7
doc/development/testing_guide/frontend_testing.md
doc/development/testing_guide/frontend_testing.md
+21
-7
No files found.
doc/development/testing_guide/frontend_testing.md
View file @
029180f0
...
...
@@ -152,19 +152,33 @@ is sufficient (and saves you some time).
### Live testing and focused testing
While developing locally, it may be helpful to keep karma running so that you
can get instant feedback on as you write tests and modify code.
To do this
you can start karma with
`
npm run karma-start`
.
It will compile the javascript
can get instant feedback on as you write tests and modify code. To do this
you can start karma with
`
yarn run karma-start`
.
It will compile the javascript
assets and run a server at
`http://localhost:9876/`
where it will automatically
run the tests on any browser which connects to it.
You can enter that url on
run the tests on any browser which connects to it. You can enter that url on
multiple browsers at once to have it run the tests on each in parallel.
While karma is running, any changes you make will instantly trigger a recompile
and retest of the entire test suite, so you can see instantly if you've broken
a test with your changes.
You can use
[
jasmine focused
][
jasmine-focus
]
or
a test with your changes. You can use
[
jasmine focused
][
jasmine-focus
]
or
excluded tests (with
`fdescribe`
or
`xdescribe`
) to get karma to run only the
tests you want while you're working on a specific feature, but make sure to
remove these directives when you commit your code.
It is also possible to only run karma on specific folders or files by simply
appending the file name to the karma command:
```
bash
# Run all files
yarn karma-start
# Run specific spec files
yarn karma-start profile/account/components/update_username_spec.js
# Run specific spec folder
yarn karma-start profile/account/components/
# Run all specs in vue_shared and vue_mr_widget
yarn karma-start /vue_shared/ /vue_mr_widget/
```
## RSpec feature integration tests
Information on setting up and running RSpec integration tests with
...
...
@@ -176,7 +190,7 @@ Information on setting up and running RSpec integration tests with
Similar errors will be thrown if you're using JavaScript features not yet
supported by the PhantomJS test runner which is used for both Karma and RSpec
tests.
We polyfill some JavaScript objects for older browsers, but some
tests. We polyfill some JavaScript objects for older browsers, but some
features are still unavailable:
-
Array.from
...
...
@@ -188,7 +202,7 @@ features are still unavailable:
-
Symbol/Symbol.iterator
-
Spread
Until these are polyfilled appropriately, they should not be used.
Please
Until these are polyfilled appropriately, they should not be used. Please
update this list with additional unsupported features.
### RSpec errors due to JavaScript
...
...
@@ -223,7 +237,7 @@ end
### Spinach errors due to missing JavaScript
NOTE:
**Note:**
Since we are discouraging the use of Spinach when writing new
feature tests, you shouldn't ever need to use this.
This information is kept
feature tests, you shouldn't ever need to use this. This information is kept
available for legacy purposes only.
In Spinach, the JavaScript driver is enabled differently. In the
`*.feature`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment