mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 15:23:25 +01:00
4b15841c41
* Create docker.test.ts * Add context tests * test main
16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
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();
|
|
});
|