Closed custa1200 closed 8 years ago
@custa1200 are you getting the results in?
resultBaseDir: './sitespeedio/',
Hello,
I'm running into a similar issue. My gulp task is even simpler as I'm trying things out for the first time. See below:
gulp.task('sitespeedio', function () { sitespeedio({ urls:['http://localhost:8080'], browser: 'chrome', connection: 'cable', resultBaseDir: './speed/' }) });
I get something like this as output: 14:44:05] Starting 'sitespeedio'... [14:44:05] Finished 'sitespeedio' after 913 μs
But is not really getting results. I'm not seeing that 'speed' folder get created. Manually adding that folder still does not make results show up in it.
Thanks!
Re-wrote the gulp task like below and it worked :)
gulp.task('speed-test', sitespeedio({ urls: ['http://127.0.0.1/8080'], resultBaseDir: 'test-results', browser: 'chrome', connection: 'desktop', html: true, budget: { gpsi: { score: 96 } } }));
I have created a gulp task as per the following:
And I have set up a graphite server using Docker using that port but when I run the task it just completes in a short amount of time with no results. Is there something I am doing incorrectly?