我是茉莉花的新手,我需要为以下功能编写单元测试用例,该功能正在使用js文件中存在的另一个功能绘制进度图。
function initiateCircle(percentage){
// alert(data);//you can access the data by passing it as the parameter
$("#test-circle").circliful({
animation: 0,
animationStep: 1,
animateInView: true,
foregroundBorderWidth: 9,
backgroundBorderWidth: 9,
percent: percentage,
textSize: 40,
textStyle: 'font-size: 19px;',
textColor: '#95db1a',
});
}
以上功能将百分比作为输入并相应地绘制进度图。上面的功能也在js文件中。
我使用了以下插件 https://github.com/pguso/jquery-plugin-circliful
感谢您的帮助!