1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-04-01 20:50:06 +02:00
login-action/__tests__/context.test.ts

17 lines
413 B
TypeScript
Raw Normal View History

2020-10-07 22:31:05 -07:00
import osm = require('os');
import {getInputs} from '../src/context';
test('without password getInputs throws errors', async () => {
expect(() => {
getInputs();
}).toThrowError('Input required and not supplied: password');
});
test('with password getInputs does not error', async () => {
process.env['INPUT_PASSWORD'] = 'groundcontrol';
expect(() => {
getInputs();
}).not.toThrowError();
});