You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -53,14 +53,14 @@ reverse-proxying the backend server(s) and a webserver(s).
53
53
### Running unit tests
54
54
55
55
We recommend using [jasmine](http://pivotal.github.com/jasmine/) and
56
-
[Testacular](http://vojtajina.github.com/testacular/) for your unit tests/specs, but you are free
56
+
[karma](http://vojtajina.github.com/karma/) for your unit tests/specs, but you are free
57
57
to use whatever works for you.
58
58
59
-
Requires [node.js](http://nodejs.org/), Testacular (`sudo npm install -g testacular`) and a local
59
+
Requires [node.js](http://nodejs.org/), karma (`sudo npm install -g karma`) and a local
60
60
or remote browser.
61
61
62
62
* start `scripts/test.sh` (on windows: `scripts\test.bat`)
63
-
* a browser will start and connect to the Testacular server (Chrome is default browser, others can be captured by loading the same url as the one in Chrome or by changing the `config/testacular.conf.js` file)
63
+
* a browser will start and connect to the karma server (Chrome is default browser, others can be captured by loading the same url as the one in Chrome or by changing the `config/karma.conf.js` file)
64
64
* to run or re-run tests just change any of your source or test javascript files
65
65
66
66
@@ -79,7 +79,7 @@ info.
79
79
* serve your project directory with your http/backend server or node.js + `scripts/web-server.js`
80
80
* to run do one of:
81
81
* open `http://localhost:port/test/e2e/runner.html` in your browser
82
-
* run the tests from console with [Testacular](vojtajina.github.com/testacular) via
82
+
* run the tests from console with [karma](vojtajina.github.com/karma) via
83
83
`scripts/e2e-test.sh` or `script/e2e-test.bat`
84
84
85
85
### Continuous Integration
@@ -121,14 +121,14 @@ fetch the changes and merge them into your project with git.
121
121
partial1.html
122
122
partial2.html
123
123
124
-
config/testacular.conf.js --> config file for running unit tests with Testacular
125
-
config/testacular-e2e.conf.js --> config file for running e2e tests with Testacular
124
+
config/karma.conf.js --> config file for running unit tests with karma
125
+
config/karma-e2e.conf.js --> config file for running e2e tests with karma
126
126
127
127
scripts/ --> handy shell/js/ruby scripts
128
-
e2e-test.sh --> runs end-to-end tests with Testacular (*nix)
129
-
e2e-test.bat --> runs end-to-end tests with Testacular (windows)
130
-
test.bat --> autotests unit tests with Testacular (windows)
131
-
test.sh --> autotests unit tests with Testacular (*nix)
128
+
e2e-test.sh --> runs end-to-end tests with karma (*nix)
129
+
e2e-test.bat --> runs end-to-end tests with karma (windows)
130
+
test.bat --> autotests unit tests with karma (windows)
131
+
test.sh --> autotests unit tests with karma (*nix)
132
132
web-server.js --> simple development webserver based on node.js
0 commit comments