We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 753c180 commit 11f3fddCopy full SHA for 11f3fdd
zuul.config.js
@@ -1,12 +1,17 @@
1
2
-module.exports = {
+var zuulConfig = module.exports = {
3
ui: 'mocha-bdd',
4
server: './test/support/server.js',
5
- tunnel: {
6
- type: 'ngrok',
7
- authtoken: '6Aw8vTgcG5EvXdQywVvbh_3fMxvd4Q7dcL2caAHAFjV',
8
- proto: 'tcp'
9
- },
+ local: true, // test on localhost by default
10
builder: 'zuul-builder-webpack',
11
webpack: require('./support/webpack.config.js')
12
};
+
+if (process.env.CI === 'true') {
+ zuulConfig.local = false;
+ zuulConfig.tunnel = {
13
+ type: 'ngrok',
14
+ authtoken: '6Aw8vTgcG5EvXdQywVvbh_3fMxvd4Q7dcL2caAHAFjV',
15
+ proto: 'tcp'
16
+ };
17
+}
0 commit comments