mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 08:55:56 -05:00
4b59a429db
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
11 lines
365 B
TypeScript
11 lines
365 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.toThrowError();
|
|
});
|