mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
faae4d6665
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
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.toThrowError();
|
|
});
|