(sel, all)
| 256 | }) |
| 257 | |
| 258 | function checkAreasClasses(sel, all) { |
| 259 | cy.get(sel).then(($areas) => { |
| 260 | all.forEach((item, index) => { |
| 261 | checkAreaClasses($areas.eq(index), item.haveTo, item.notHaveTo) |
| 262 | }) |
| 263 | }) |
| 264 | } |
| 265 | |
| 266 | function checkAreaClasses($area, haveTo, notHaveTo) { |
| 267 | console.log('$area, haveTo, notHaveTo', $area, haveTo, notHaveTo) |
no test coverage detected
searching dependent graphs…