2023-01-24 07:44:31 +08:00
|
|
|
import {beforeEach, describe, expect, it, jest} from '@jest/globals';
|
2023-01-17 18:53:57 +08:00
|
|
|
import * as git from '../src/git';
|
|
|
|
|
2023-01-24 07:44:31 +08:00
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
});
|
|
|
|
|
2023-01-17 18:53:57 +08:00
|
|
|
describe('git', () => {
|
|
|
|
it('returns git remote ref', async () => {
|
2023-01-24 08:21:26 +08:00
|
|
|
try {
|
|
|
|
expect(await git.getRemoteSha('https://github.com/docker/buildx.git', 'refs/pull/648/head')).toEqual('f11797113e5a9b86bd976329c5dbb8a8bfdfadfa');
|
|
|
|
} catch (e) {
|
|
|
|
// eslint-disable-next-line jest/no-conditional-expect
|
|
|
|
expect(e).toEqual(null);
|
|
|
|
}
|
|
|
|
});
|
2023-01-17 18:53:57 +08:00
|
|
|
});
|