chore(scaffolder): fixing linting issues

This commit is contained in:
blam
2020-06-28 00:09:44 +02:00
parent f07b794987
commit 9d8709d5b7
@@ -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 () => {