mirror of
https://github.com/docker/setup-buildx-action.git
synced 2025-06-11 05:47:13 +02:00
Allow building buildx from source
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
11
__tests__/util.test.ts
Normal file
11
__tests__/util.test.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import * as util from '../src/util';
|
||||
|
||||
describe('isValidUrl', () => {
|
||||
test.each([
|
||||
['https://github.com/docker/buildx.git', true],
|
||||
['https://github.com/docker/buildx.git#refs/pull/648/head', true],
|
||||
['v0.4.1', false]
|
||||
])('given %p', async (url, expected) => {
|
||||
expect(util.isValidUrl(url)).toEqual(expected);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user