mirror of
https://github.com/weaveworks/scope.git
synced 2026-02-25 23:34:01 +00:00
(was the removal of :id from the node objects) Only show errors in webpack output! Tidying up More tidying more tidying More fiddling around wip wip wip Fixes forceLayout rm console.log
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
var browserPerf = require('browser-perf');
|
|
var options = {
|
|
selenium: 'http://local.docker:4444/wd/hub',
|
|
actions: [require('./custom-action.js')()]
|
|
}
|
|
browserPerf('http://local.docker:4040/dev.html', function(err, res){
|
|
console.error(err);
|
|
console.log(res);
|
|
}, options);
|