mirror of
https://github.com/docker/login-action.git
synced 2024-11-06 00:45:48 -05:00
5df5104555
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
import osm = require('os');
|
|
|
|
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';
|
|
expect(() => {
|
|
getInputs();
|
|
}).not.toThrowError();
|
|
});
|