diff options
| author | Vojta Jina | 2013-03-20 18:57:13 -0700 |
|---|---|---|
| committer | Igor Minar | 2013-04-03 18:22:03 -0700 |
| commit | 91fa865bf22afdf4b25a20acce7a8c7f7d331323 (patch) | |
| tree | b450929dfc4cba0b80deec58927a779939dfbdfb /karma-e2e.conf.js | |
| parent | 10ae76673c200511f5da5aa1d5bea200b7be0fda (diff) | |
| download | angular.js-91fa865bf22afdf4b25a20acce7a8c7f7d331323.tar.bz2 | |
chore: use Karma
Diffstat (limited to 'karma-e2e.conf.js')
| -rw-r--r-- | karma-e2e.conf.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/karma-e2e.conf.js b/karma-e2e.conf.js new file mode 100644 index 00000000..07c79c70 --- /dev/null +++ b/karma-e2e.conf.js @@ -0,0 +1,20 @@ +var angularFiles = require(__dirname + '/angularFiles.js'); + +files = [ANGULAR_SCENARIO, ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js']; + +autoWatch = false; +singleRun = true; +logLevel = LOG_INFO; +logColors = true; +browsers = ['Chrome']; + +proxies = { + // angular.js, angular-resource.js, etc + '/angular': 'http://localhost:8000/build/angular', + '/': 'http://localhost:8000/build/docs/' +}; + +junitReporter = { + outputFile: 'test_out/e2e.xml', + suite: 'E2E' +}; |
