Skip to content

Commit 874fbfe

Browse files
committed
Test update
1 parent ba6ec03 commit 874fbfe

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/SeqCli.EndToEnd/Node/NodeHealthTestCase.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ public Task ExecuteAsync(SeqConnection connection, ILogger logger, CliCommandRun
1313
{
1414
var exit = runner.Exec("node health");
1515
Assert.Equal(0, exit);
16+
Assert.Equal("200", runner.LastRunProcess!.Output.Trim());
17+
18+
exit = runner.Exec("node health --no-color --json");
19+
Assert.Equal(0, exit);
1620
Assert.StartsWith("{\"status\":", runner.LastRunProcess!.Output);
21+
1722
return Task.CompletedTask;
1823
}
1924
}

0 commit comments

Comments
 (0)