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.
1 parent ce981e8 commit 2c981a6Copy full SHA for 2c981a6
test/SeqCli.EndToEnd/Sample/SampleIngestTestCase.cs
@@ -12,7 +12,17 @@ public class SampleIngestTestCase : ICliTestCase
12
{
13
public async Task ExecuteAsync(SeqConnection connection, ILogger logger, CliCommandRunner runner)
14
15
- runner.Exec("sample ingest", "--setup --confirm", timeout: TimeSpan.FromSeconds(3));
+ try
16
+ {
17
+ runner.Exec("sample ingest", "--setup --confirm", timeout: TimeSpan.FromSeconds(3));
18
+ }
19
+ catch
20
21
+ // Ignored
22
23
+
24
+ var events = await connection.Events.ListAsync();
25
+ Assert.NotEmpty(events);
26
27
var sampleWorkspace = (await connection.Workspaces.ListAsync(shared: true))
28
.SingleOrDefault(w => w.Title == "Sample");
0 commit comments