From 1d33cb96f517e9f44c76ffc1fbc0746357fcfabc Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Fri, 29 Apr 2016 11:39:33 +0200 Subject: [PATCH] Fix missing semicolon in cucumber support code --- features/support/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/support/route.js b/features/support/route.js index c38715a9d..92d474927 100644 --- a/features/support/route.js +++ b/features/support/route.js @@ -131,7 +131,7 @@ module.exports = function () { if (instructions) { return instructions.legs.map(l => l.summary).join(','); } - } + }; this.wayList = (instructions) => { return this.extractInstructionList(instructions, s => s.name);