Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2014-03-31 06:32:07 +0400
committerThomas Steur <tsteur@users.noreply.github.com>2014-03-31 06:32:07 +0400
commit200f752cfa77a94fd12ea9ca1e85519e391c0495 (patch)
tree89d69472739602a34c7d9336a294b4405546ca6d /tests/angularjs
parent3be7243ea4709e2f6ad50473d22364196b633f0a (diff)
lets use _spec.js instead of _test.js as this is already used in the UI tests
Diffstat (limited to 'tests/angularjs')
-rw-r--r--tests/angularjs/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/angularjs/README.md b/tests/angularjs/README.md
index c2f68a8e39..152f90efed 100644
--- a/tests/angularjs/README.md
+++ b/tests/angularjs/README.md
@@ -17,11 +17,11 @@ On Ubuntu you might be able to use the `scripts/install-ubuntu.sh` script. Have
## File structure
-We do not have a general `tests` folder containing all test files. Instead we create a file having the same name appended by "_test.js" in the same directory.
+We do not have a general `tests` folder containing all test files. Instead we create a file having the same name appended by `_spec.js` in the same directory.
-For instance you want to test a file named `startfrom.js` then we create a file named `startfrom_test.js`:
+For instance you want to test a file named `startfrom.js` then we create a file named `startfrom_spec.js`:
`plugins/CoreHome/angularjs/common/filters/startfrom.js` =>
-`plugins/CoreHome/angularjs/common/filters/startfrom_test.js`
+`plugins/CoreHome/angularjs/common/filters/startfrom_spec.js`
## Execution