- use performance log of chromedriver / appium to get timeline data for calculating metrics for benchmarks - change all benchmarks to be made of a standalone application and a protractor test that collectes timeline data - fix and simplify benchmarks - add dart2js to build - remove benchpress Closes #330
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
module.exports = function(gulp, plugins, config) {
|
|
return function() {
|
|
plugins.connect.server({
|
|
root: [__dirname+'/../../'+config.path],
|
|
port: config.port,
|
|
livereload: false,
|
|
open: false
|
|
})();
|
|
};
|
|
};
|