Skip to content

Commit

Permalink
improve type
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Mar 22, 2024
1 parent dd6ad3d commit 53f7f2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ test('Print compiler information as JSON', async () => {
test('Print help for all commands', async () => {
const output = await MakeNSIS.commandHelp();

const expected = shared.commandHelp.replace(/\s+/g, '');
const expected = shared.commandHelp?.replace(/\s+/g, '');
const actual = output.stdout.replace(/\s+/g, '');

assert.is(actual, expected);
Expand Down

0 comments on commit 53f7f2d

Please sign in to comment.