mirror of
				https://github.com/docker/setup-buildx-action.git
				synced 2025-10-31 01:20:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			388 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			388 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {describe, expect, test} from '@jest/globals';
 | |
| 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);
 | |
|   });
 | |
| });
 | 
