From c2e215fab6ba73e195f8c32701cfb6e88e8e1ebd Mon Sep 17 00:00:00 2001 From: Vojta Jina Date: Wed, 20 Mar 2013 18:57:13 -0700 Subject: chore: use Karma --- karma-e2e.conf.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 karma-e2e.conf.js (limited to 'karma-e2e.conf.js') 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' +}; -- cgit v1.2.3