mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-05 03:35:39 +01:00
e99ab50e6c
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
15 lines
512 B
TypeScript
15 lines
512 B
TypeScript
import {describe, expect, jest, it} from '@jest/globals';
|
|
import * as github from '../src/github';
|
|
|
|
import * as repoFixture from './fixtures/repo.json';
|
|
jest.spyOn(github, 'repo').mockImplementation((): Promise<github.ReposGetResponseData> => {
|
|
return <Promise<github.ReposGetResponseData>>(repoFixture as unknown);
|
|
});
|
|
|
|
describe('repo', () => {
|
|
it('returns GitHub repository', async () => {
|
|
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
|
|
expect(repo.name).not.toBeNull();
|
|
});
|
|
});
|