aboutsummaryrefslogtreecommitdiffstats
path: root/karma-e2e.conf.js
diff options
context:
space:
mode:
authorVojta Jina2013-03-20 18:57:13 -0700
committerVojta Jina2013-04-01 12:24:27 -0700
commitc2e215fab6ba73e195f8c32701cfb6e88e8e1ebd (patch)
treee97578b6e2b7e72b59962c14c7462da65d0d02a0 /karma-e2e.conf.js
parent61f2767ce65562257599649d9eaf9da08f321655 (diff)
downloadangular.js-c2e215fab6ba73e195f8c32701cfb6e88e8e1ebd.tar.bz2
chore: use Karma
Diffstat (limited to 'karma-e2e.conf.js')
-rw-r--r--karma-e2e.conf.js20
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'
+};