()
| 339 | }, |
| 340 | |
| 341 | selectedTests() { |
| 342 | // Only run visible tests. |
| 343 | return this.tests.filter(test => { |
| 344 | return test.selected; |
| 345 | }); |
| 346 | }, |
| 347 | unfinishedTests() { |
| 348 | return this.fullTests.filter(test => { |
| 349 | return test.status !== 'finished'; |
nothing calls this directly
no test coverage detected
searching dependent graphs…