util: add commentNoInfix support to getInputList
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
@@ -87,6 +87,12 @@ describe('getInputList', () => {
|
||||
expect(res).toEqual(['foo=bar', 'bar=qux']);
|
||||
});
|
||||
|
||||
it('multiline with comment and no infix comment', async () => {
|
||||
setInput('labels', '# ignore this\nfoo=bar\nbar=qux#baz');
|
||||
const res = Util.getInputList('labels', {comment: '#', commentNoInfix: true});
|
||||
expect(res).toEqual(['foo=bar', 'bar=qux#baz']);
|
||||
});
|
||||
|
||||
it('different new lines and ignoring comma correctly', async () => {
|
||||
setInput('cache-from', 'user/app:cache\r\ntype=local,src=path/to/dir');
|
||||
const res = Util.getInputList('cache-from', {ignoreComma: true});
|
||||
|
||||
Reference in New Issue
Block a user