()
| 175 | return ctx.state.getUnhandledErrors() |
| 176 | }, |
| 177 | async getTestFiles() { |
| 178 | const spec = await ctx.globTestSpecifications() |
| 179 | return spec.map(spec => [ |
| 180 | { |
| 181 | name: spec.project.config.name, |
| 182 | root: spec.project.config.root, |
| 183 | }, |
| 184 | spec.moduleId, |
| 185 | { pool: spec.pool }, |
| 186 | ]) |
| 187 | }, |
| 188 | }, |
| 189 | { |
| 190 | post: msg => ws.send(msg), |
nothing calls this directly
no test coverage detected