Skip to content

Commit

Permalink
Correct test case
Browse files Browse the repository at this point in the history
  • Loading branch information
skovhus committed Dec 20, 2022
1 parent 3634db8 commit 4acc607
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions server/src/__tests__/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@ describe('ConfigSchema', () => {
it('allows shellcheckArguments to be an array', () => {
expect(
ConfigSchema.parse({
shellcheckArguments: [
'--shell=sh',
'--exclude=SC2034,SC1090,SC1091,SC2164,SC2181,SC2154,SC2004,SC2016,SC2086,SC2048,SC2148',
],
shellcheckArguments: [' -e ', 'SC2001', '-e', 'SC2002 '],
}).shellcheckArguments,
).toEqual(['-e', 'SC2001', '-e', 'SC2002'])
})
Expand Down

0 comments on commit 4acc607

Please sign in to comment.