mirror of
https://github.com/docker/actions-toolkit.git
synced 2024-11-27 06:46:07 +08:00
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();
|
||
|
});
|
||
|
});
|