diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-03-15 18:31:01 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-03-15 18:31:01 -0500 |
commit | 95d38ac9f97e80a26aac8026a4d38a54fbdc98e8 (patch) | |
tree | 26a92aae77b23933626af819a4363552b0e1b824 /doc/development/testing.md | |
parent | 68e40bd49fde7b790bb31b9ac85a249bedd817d2 (diff) | |
download | gitlab-ce-95d38ac9f97e80a26aac8026a4d38a54fbdc98e8.tar.gz |
remove all references to the .es6 in our config files and documentationremove-es6-extension-configuration
Diffstat (limited to 'doc/development/testing.md')
-rw-r--r-- | doc/development/testing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/testing.md b/doc/development/testing.md index 9b545d7f0f1..5ac7b8dadeb 100644 --- a/doc/development/testing.md +++ b/doc/development/testing.md @@ -35,8 +35,8 @@ GitLab uses [Karma] to run its [Jasmine] JavaScript specs. They can be run on the command line via `bundle exec karma`. - JavaScript tests live in `spec/javascripts/`, matching the folder structure of - `app/assets/javascripts/`: `app/assets/javascripts/behaviors/autosize.js.es6` has a corresponding - `spec/javascripts/behaviors/autosize_spec.js.es6` file. + `app/assets/javascripts/`: `app/assets/javascripts/behaviors/autosize.js` has a corresponding + `spec/javascripts/behaviors/autosize_spec.js` file. - Haml fixtures required for JavaScript tests live in `spec/javascripts/fixtures`. They should contain the bare minimum amount of markup necessary for the test. |