mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-08 21:25:40 +01:00
c15e83fc17
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
484 B
TypeScript
15 lines
484 B
TypeScript
import * as path from 'path';
|
|
import * as github from '../src/github';
|
|
|
|
jest.spyOn(github, 'repo').mockImplementation((): Promise<github.ReposGetResponseData> => {
|
|
return <Promise<github.ReposGetResponseData>>require(path.join(__dirname, 'fixtures', 'repo.json'));
|
|
});
|
|
|
|
describe('repo', () => {
|
|
it('returns GitHub repository', async () => {
|
|
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
|
|
console.log(repo);
|
|
expect(repo.name).not.toBeNull();
|
|
});
|
|
});
|