Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf985d0 + 82d1000 commit 1bf4b58Copy full SHA for 1bf4b58
__tests__/util.test.ts
@@ -31,6 +31,12 @@ describe('getInputList', () => {
31
expect(res).toEqual(['bar']);
32
});
33
34
+ it('empty correctly', async () => {
35
+ setInput('foo', '');
36
+ const res = Util.getInputList('foo');
37
+ expect(res).toEqual([]);
38
+ });
39
+
40
it('multiline correctly', async () => {
41
setInput('foo', 'bar\nbaz');
42
const res = Util.getInputList('foo');
0 commit comments