(testsList)
| 948 | }, |
| 949 | |
| 950 | updateTestsList(testsList) { |
| 951 | this.fullTests = processTestsData(testsList, this.fullTests, this.runConfig.expectedSource, this.runConfig.expectedVersion); |
| 952 | |
| 953 | if (!this.currentTestName && this.fullTests.length > 0) { |
| 954 | this.currentTestName = this.fullTests[0].name; |
| 955 | } |
| 956 | |
| 957 | if (this.currentTestName) { |
| 958 | const currentTest = this.fullTests.find(test => test.name === this.currentTestName); |
| 959 | if (!currentTest && this.fullTests.length > 0) { |
| 960 | this.currentTestName = this.fullTests[0].name; |
| 961 | } |
| 962 | } |
| 963 | }, |
| 964 | } |
| 965 | }); |
| 966 |
no test coverage detected
searching dependent graphs…