Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyclarkson committed May 24, 2016
1 parent 4d40067 commit b9c463f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ var server = http.createServer(function (req, res) {
res.end('Hello World\n');
}).listen(6785);

server.on('request', function (req) {
console.log('url', req.url);
var userAgent = useragent.parse(req.headers['user-agent']);
console.log('ua', userAgent);
});

describe('Local browser launcher tests', function() {

describe('Default env settings', function () {
Expand Down

0 comments on commit b9c463f

Please sign in to comment.