(options)
| 146 | }, |
| 147 | |
| 148 | buildTestPageQueryString(options) { |
| 149 | let params = []; |
| 150 | |
| 151 | if (options.module) { |
| 152 | params.push(`module=${options.module}`); |
| 153 | } |
| 154 | |
| 155 | if (options.filter) { |
| 156 | params.push(`filter=${options.filter.toLowerCase()}`); |
| 157 | } |
| 158 | |
| 159 | if (options.query) { |
| 160 | params.push(options.query); |
| 161 | } |
| 162 | |
| 163 | return params.join('&'); |
| 164 | }, |
| 165 | |
| 166 | async run(commandOptions) { |
| 167 | if (this.isViteProject) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…