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 23b5cc0 commit c4395b8Copy full SHA for c4395b8
test/e2e/integration_test.go
@@ -364,8 +364,13 @@ func TestJobControl(t *testing.T) {
364
if _, err := p.Write(time.Second, []byte{0x03}); err != nil {
365
t.Fatalf("error exit: %v", err)
366
}
367
+ if logs, err := p.Logs(); err != nil {
368
+ t.Logf("failed to read output: %s", err)
369
+ } else {
370
+ t.Logf("output: %s", logs)
371
+ }
372
- if err := d.WaitTimeout(ctx, 3*time.Second); err != nil {
373
+ if err := d.WaitTimeout(ctx, 10*time.Second); err != nil {
374
t.Fatalf("WaitTimeout failed: %v", err)
375
376
0 commit comments