MCPcopy Index your code
hub / github.com/angular-split/angular-split / checkGuttersAriaValueTexts

Function checkGuttersAriaValueTexts

cypress/support/splitUtils.js:27–36  ·  view source on GitHub ↗
(gutters, ariaValueTexts)

Source from the content-addressed store, hash-verified

25}
26
27export function checkGuttersAriaValueTexts(gutters, ariaValueTexts) {
28 cy.get(gutters).each(($gutter, index) => {
29 const ariaValueText = ariaValueTexts[index]
30 if (ariaValueText === null) {
31 cy.wrap($gutter).should('not.have.attr', 'aria-valuetext')
32 } else {
33 cy.wrap($gutter).should('have.attr', 'aria-valuetext').and('equal', ariaValueTexts[index])
34 }
35 })
36}
37
38//////////////////////////////////////////
39

Callers 2

1.simple.cy.jsFile · 0.90
2.minmax.cy.jsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…