diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-30 10:54:19 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-30 13:20:16 +0200 |
commit | 497c057bbc52fc417f3466365bbc93c887703155 (patch) | |
tree | 7f5e2f458fdd3564e426bc6ce2aadeaa96a37594 /server | |
parent | 8050892563f5c0b90057a5458208ed1315da0629 (diff) | |
download | sonarqube-497c057bbc52fc417f3466365bbc93c887703155.tar.gz sonarqube-497c057bbc52fc417f3466365bbc93c887703155.zip |
add browser config for web tests
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-web/test/intern-browser.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/sonar-web/test/intern-browser.js b/server/sonar-web/test/intern-browser.js new file mode 100644 index 00000000000..eb1465020d0 --- /dev/null +++ b/server/sonar-web/test/intern-browser.js @@ -0,0 +1,15 @@ +/* jshint node:true */ +define({ + excludeInstrumentation: /(test|third-party|node_modules)\//, + + defaultTimeout: 60 * 1000, + + suites: [ + 'test/unit/application.spec' + ], + + tunnel: 'NullTunnel', + environments: [ + { browserName: 'firefox' } + ] +}); |