()
| 62 | } |
| 63 | |
| 64 | function createCard() { |
| 65 | const card = document.createElement("div"); |
| 66 | card.className = "task-card"; |
| 67 | const mainRow = card.createDiv({ cls: "task-card__main-row" }); |
| 68 | document.body.appendChild(card); |
| 69 | return { card, mainRow }; |
| 70 | } |
| 71 | |
| 72 | describe("taskCardPrimaryIndicators", () => { |
| 73 | beforeEach(() => { |
no outgoing calls
no test coverage detected