mirror of
https://github.com/docker/setup-buildx-action
synced 2024-11-10 06:01:40 +00:00
f40e8894f1
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
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);
|
|
});
|
|
});
|