const table = { // Tạo bảng kiểm tra renderTableCheck, createCheckList, } module.exports = table; // Tạo danh sách kiểm tra function createCheckList(checkList) { let finfalList = ''; checkList.forEach((item, index) => { finfalList += ` ${index + 1} ${item.label} Wait `; }) return finfalList; } function renderTableCheck(checkListTable) { $("body").append(`

BẢNG KIỂM TRA AUTO-TEST

${checkListTable}
STT Công việc Kết quả
`); }