NewParallelCLI marks the parent test as parallel and returns a CLI instance suitable for usage across child tests.
(t *testing.T, opts ...CLIOption)
| 87 | // NewParallelCLI marks the parent test as parallel and returns a CLI instance |
| 88 | // suitable for usage across child tests. |
| 89 | func NewParallelCLI(t *testing.T, opts ...CLIOption) *CLI { |
| 90 | t.Helper() |
| 91 | t.Parallel() |
| 92 | return NewCLI(t, opts...) |
| 93 | } |
| 94 | |
| 95 | // NewCLI creates a CLI instance for running E2E tests. |
| 96 | func NewCLI(t testing.TB, opts ...CLIOption) *CLI { |