mirror of
https://github.com/docker/login-action.git
synced 2025-04-19 01:26:45 +00:00
Mostly tests and some small changes (#16)
* Create docker.test.ts * Add context tests * test main
This commit is contained in:
parent
34d5f75b0d
commit
4b15841c41
5 changed files with 148 additions and 8 deletions
16
__tests__/context.test.ts
Normal file
16
__tests__/context.test.ts
Normal file
|
@ -0,0 +1,16 @@
|
|||
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();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue