-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathissue.test.ts
32 lines (27 loc) · 910 Bytes
/
issue.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* eslint-disable no-magic-numbers */
import { resolve } from 'path';
import {
testEnv,
getOctokit,
disableNetConnect,
generateContext,
getApiFixture,
} from '@technote-space/github-action-test-helper';
import nock from 'nock';
import { describe, expect, it } from 'vitest';
import { getIssues } from './issue';
const rootDir = resolve(__dirname, '../..');
const fixturesDir = resolve(__dirname, '..', 'fixtures');
describe('getIssues', () => {
disableNetConnect(nock);
testEnv(rootDir);
it('should get issues', async() => {
nock('https://api.github.com')
.get('/repos/hello/world/issues')
.reply(200, () => getApiFixture(fixturesDir, 'issues.get'));
const issues = await getIssues(getOctokit(), generateContext({ owner: 'hello', repo: 'world' }));
expect(issues).toHaveLength(2);
expect(issues[0]!.id).toBe(1);
expect(issues[1]!.id).toBe(3);
});
});