mirror of
https://github.com/maputnik/editor.git
synced 2025-12-07 14:50:02 +00:00
Also - Fixed screenshot tests - Fixed code coverage - Removed appveyor - Removed circleci - Updated wdio related dependencies - Added docker image deploy to the GitHub registry
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
var config = {};
|
|
var testNetwork = process.env.TEST_NETWORK || "localhost";
|
|
|
|
config.port = 9001;
|
|
config.baseUrl = "http://"+testNetwork+":"+config.port;
|
|
|
|
module.exports = config;
|