From 22cb8115d805384f334e1bfc563ce2e0e36abcfa Mon Sep 17 00:00:00 2001 From: Andrew Lessels Date: Fri, 25 Aug 2017 08:28:51 +1000 Subject: [PATCH] Fix indentation --- types/nightmare/nightmare-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/nightmare/nightmare-tests.ts b/types/nightmare/nightmare-tests.ts index dec08730f7..434964bb20 100644 --- a/types/nightmare/nightmare-tests.ts +++ b/types/nightmare/nightmare-tests.ts @@ -172,12 +172,12 @@ new Nightmare() }) .run(done); - new Nightmare() +new Nightmare() .goto('http://yahoo.com') .screenshot('test/test.png', { x: 10, y: 5, width: 10, height: 10}) .run(done); - new Nightmare() +new Nightmare() .goto('http://yahoo.com') .screenshot({ x: 10, y: 5, width: 10, height: 10}, (err, buffer) => { console.log(Buffer.isBuffer(buffer));