From 9d8709d5b78c4d8b1a992cedd8fdaf826216cf8a Mon Sep 17 00:00:00 2001 From: blam Date: Sun, 28 Jun 2020 00:09:44 +0200 Subject: [PATCH] chore(scaffolder): fixing linting issues --- .../src/scaffolder/stages/templater/cookiecutter.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder-backend/src/scaffolder/stages/templater/cookiecutter.test.ts b/plugins/scaffolder-backend/src/scaffolder/stages/templater/cookiecutter.test.ts index 8c0cd5d6d7..994307e8b7 100644 --- a/plugins/scaffolder-backend/src/scaffolder/stages/templater/cookiecutter.test.ts +++ b/plugins/scaffolder-backend/src/scaffolder/stages/templater/cookiecutter.test.ts @@ -126,13 +126,13 @@ describe('CookieCutter Templater', () => { description: 'description', }; - const path = await cookie.run({ + const returnPath = await cookie.run({ directory: tempdir, values, dockerClient: mockDocker, }); - expect(path.startsWith(`${tempdir}-result`)).toBeTruthy(); + expect(returnPath.startsWith(`${tempdir}-result`)).toBeTruthy(); }); it('should pass through the streamer to the run docker helper', async () => {