(runResult)
| 912 | }, |
| 913 | |
| 914 | delTestsRun(runResult) { |
| 915 | app.$confirm('Are you sure to delete this run?', 'Warn', { |
| 916 | confirmButtonText: 'Yes', |
| 917 | cancelButtonText: 'No', |
| 918 | center: true |
| 919 | }).then(value => { |
| 920 | const idx = this.testsRuns.indexOf(runResult); |
| 921 | if (idx >= 0) { |
| 922 | this.testsRuns.splice(idx, 1); |
| 923 | } |
| 924 | socket.emit('delTestsRun', { |
| 925 | id: runResult.id |
| 926 | }); |
| 927 | }).catch(() => {}); |
| 928 | }, |
| 929 | |
| 930 | open(url, target) { |
| 931 | window.open(url, target); |
no outgoing calls
no test coverage detected
searching dependent graphs…