add ref parameter to clone

This commit is contained in:
Alan Crosswell
2021-01-21 16:14:09 -05:00
parent 85cdcb2c6b
commit c7de259c92
@@ -89,6 +89,7 @@ describe('GitLabPreparer', () => {
expect(mockGitClient.clone).toHaveBeenCalledWith({
url: 'https://gitlab.com/benjdlambert/backstage-graphql-template',
dir: expect.any(String),
ref: expect.any(String),
});
});
@@ -113,6 +114,7 @@ describe('GitLabPreparer', () => {
expect(mockGitClient.clone).toHaveBeenCalledWith({
url: 'https://gitlab.com/benjdlambert/backstage-graphql-template',
dir: expect.any(String),
ref: expect.any(String),
});
});