MCPcopy Index your code
hub / github.com/apache/echarts / delTestsRun

Function delTestsRun

test/runTest/client/client.js:914–928  ·  view source on GitHub ↗
(runResult)

Source from the content-addressed store, hash-verified

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);

Callers 1

startFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…