scaffolder: fix use of path.join in fetch:template tests

Signed-off-by: Mike Lewis <mtlewis@users.noreply.github.com>
This commit is contained in:
Mike Lewis
2021-07-07 11:20:10 +01:00
parent 886844aa30
commit 51513c6420
@@ -48,9 +48,7 @@ describe('fetch:template', () => {
ActionContext<FetchTemplateInput>['createTemporaryDirectory']
> = jest.fn(() =>
Promise.resolve(
joinPath(
`${workspacePath}/${createTemporaryDirectory.mock.calls.length}`,
),
joinPath(workspacePath, `${createTemporaryDirectory.mock.calls.length}`),
),
);