WithTask sets the name of the task to run. This should be used when the task to run is not the default task.
(task string)
| 146 | // WithTask sets the name of the task to run. This should be used when the task |
| 147 | // to run is not the default task. |
| 148 | func WithTask(task string) TestOption { |
| 149 | return &taskTestOption{task: task} |
| 150 | } |
| 151 | |
| 152 | type taskTestOption struct { |
| 153 | task string |
no outgoing calls
no test coverage detected
searching dependent graphs…