You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just installed this package for my project and i m really liking it
I m using it to create a report of tests where i show how many passed , failed and skipped/pending
Only issue is i need to show the number of tests for each segment on hover
here s my implementation so far
<yan-progress :total="item.pass+item.skip+item.fail" :done="item.pass" :modify="item.fail" :tip='[
{
text: "item.pass",//here show number of pass
fillStyle: "rgb(0, 249, 0)",
},
{
text: "item.skip",//here show number of skips
fillStyle: "rgb(0, 0, 249)",
},
{
text: "item.fail" ,//here show number of fails
fillStyle: "rgb(249, 0, 0)"
}
]'
/>
The text was updated successfully, but these errors were encountered:
I just installed this package for my project and i m really liking it
I m using it to create a report of tests where i show how many passed , failed and skipped/pending
Only issue is i need to show the number of tests for each segment on hover
here s my implementation so far
The text was updated successfully, but these errors were encountered: