mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 10:26:08 -07:00
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import * as github from '../src/github';
|
|
|
|
describe('github', () => {
|
|
it('returns 3.96 GitHub release', async () => {
|
|
const release = await github.getRelease('3.96');
|
|
expect(release).not.toBeNull();
|
|
expect(release?.tag_name).toEqual('v3.96');
|
|
});
|
|
});
|