From 3c57297e0a898660267575fecee7bc09d745badd Mon Sep 17 00:00:00 2001 From: Matt Clarkson Date: Fri, 29 Apr 2016 13:33:00 +0100 Subject: [PATCH] wip: log UA --- test/local.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/local.js b/test/local.js index a3cd22b..5e8e6d9 100644 --- a/test/local.js +++ b/test/local.js @@ -46,6 +46,7 @@ describe('Local browser launcher tests', function() { var userAgent = useragent.parse(req.headers['user-agent']); var expected = familyMapping[name] || name; + console.log(userAgent, expected); assert.equal(userAgent.family.toLowerCase(), expected, 'Got expected browser family'); instance.stop(done); });