update tests

Signed-off-by: Chase Rutherford-Jenkins <chaseajen@users.noreply.github.com>
This commit is contained in:
Chase Rutherford-Jenkins
2021-07-06 21:15:14 -05:00
parent 7cad18e2f0
commit 3c19f1230f
3 changed files with 6 additions and 0 deletions
@@ -165,6 +165,7 @@ describe('publish:azure', () => {
defaultBranch: 'master',
auth: { username: 'notempty', password: 'tokenlols' },
logger: mockContext.logger,
gitAuthorInfo: {},
});
});
@@ -226,6 +227,7 @@ describe('publish:azure', () => {
remoteUrl: 'https://dev.azure.com/organization/project/_git/repo',
auth: { username: 'notempty', password: 'tokenlols' },
logger: mockContext.logger,
defaultBranch: 'master',
gitAuthorInfo: { name: 'Test', email: 'example@example.com' },
});
});
@@ -289,6 +289,7 @@ describe('publish:bitbucket', () => {
defaultBranch: 'master',
auth: { username: 'x-token-auth', password: 'tokenlols' },
logger: mockContext.logger,
gitAuthorInfo: {},
});
});
@@ -400,6 +401,7 @@ describe('publish:bitbucket', () => {
remoteUrl: 'https://bitbucket.org/owner/cloneurl',
auth: { username: 'x-token-auth', password: 'tokenlols' },
logger: mockContext.logger,
defaultBranch: 'master',
gitAuthorInfo: { name: 'Test', email: 'example@example.com' },
});
});
@@ -143,6 +143,7 @@ describe('publish:gitlab', () => {
remoteUrl: 'http://mockurl.git',
auth: { username: 'oauth2', password: 'tokenlols' },
logger: mockContext.logger,
gitAuthorInfo: {},
});
});
@@ -213,6 +214,7 @@ describe('publish:gitlab', () => {
remoteUrl: 'http://mockurl.git',
auth: { username: 'oauth2', password: 'tokenlols' },
logger: mockContext.logger,
defaultBranch: 'master',
gitAuthorInfo: { name: 'Test', email: 'example@example.com' },
});
});