test(aio): fix typos (repoSlag --> repoSlug)
This commit is contained in:
parent
9df9bdc0f5
commit
8a8d4fe24f
|
@ -18,7 +18,7 @@ describe('BuildCleaner', () => {
|
|||
});
|
||||
|
||||
|
||||
it('should throw if \'repoSlag\' is empty', () => {
|
||||
it('should throw if \'repoSlug\' is empty', () => {
|
||||
expect(() => new BuildCleaner('/foo/bar', '')).toThrowError('Missing required parameter \'repoSlug\'!');
|
||||
});
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ describe('GithubApi', () => {
|
|||
|
||||
describe('constructor()', () => {
|
||||
|
||||
it('should throw if \'repoSlag\' is not defined', () => {
|
||||
it('should throw if \'repoSlug\' is not defined', () => {
|
||||
expect(() => new GithubApi('', '12345')).toThrowError('Missing required parameter \'repoSlug\'!');
|
||||
});
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ describe('GithubPullRequests', () => {
|
|||
});
|
||||
|
||||
|
||||
it('should throw if \'repoSlag\' is not defined', () => {
|
||||
it('should throw if \'repoSlug\' is not defined', () => {
|
||||
expect(() => new GithubPullRequests('', '12345')).toThrowError('Missing required parameter \'repoSlug\'!');
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue