Last active
December 19, 2015 08:39
-
-
Save limdauto/5927561 to your computer and use it in GitHub Desktop.
Karma E2E Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basePath = '../'; | |
files = [ | |
ANGULAR_SCENARIO, | |
ANGULAR_SCENARIO_ADAPTER, | |
'app/controllers.js', | |
'tests/e2e/*.js' | |
]; | |
autoWatch = false; | |
browsers = ['google-chrome']; | |
singleRun = true; | |
urlRoot = '/karma'; | |
proxies = { | |
'/': 'http://localhost:12345/', | |
}; | |
junitReporter = { | |
outputFile: 'test_out/e2e.xml', | |
suite: 'e2e' | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment