(t *testing.T, c config)
| 729 | } |
| 730 | |
| 731 | func testSetAsyncScriptTimeout(t *testing.T, c config) { |
| 732 | wd := newRemote(t, c) |
| 733 | defer quitRemote(t, wd) |
| 734 | |
| 735 | if err := wd.SetAsyncScriptTimeout(200); err != nil { |
| 736 | t.Fatal(err) |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | func testSetImplicitWaitTimeout(t *testing.T, c config) { |
| 741 | wd := newRemote(t, c) |
nothing calls this directly
no test coverage detected
searching dependent graphs…