mirror of
				https://github.com/docker/login-action.git
				synced 2025-10-31 18:20:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			361 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			361 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import {expect, test} from '@jest/globals';
 | |
| 
 | |
| import {getInputs} from '../src/context';
 | |
| 
 | |
| test('with password and username getInputs does not throw error', async () => {
 | |
|   process.env['INPUT_USERNAME'] = 'dbowie';
 | |
|   process.env['INPUT_PASSWORD'] = 'groundcontrol';
 | |
|   process.env['INPUT_LOGOUT'] = 'true';
 | |
|   expect(() => {
 | |
|     getInputs();
 | |
|   }).not.toThrow();
 | |
| });
 | 
