1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

Updating cypress test to fix in CI.

This commit is contained in:
mike12345567 2021-02-16 21:40:35 +00:00
parent 1c577349d4
commit 2849ccb4b9

View file

@ -62,9 +62,10 @@ context("Create a View", () => {
expect(headers).to.deep.eq([ 'avg', 'sumsqr', 'count', 'max', 'min', 'sum', 'field' ])
})
cy.get(".ag-cell").then($values => {
const values = Array.from($values).map(header =>
let values = Array.from($values).map(header =>
header.textContent.trim()
)
values = values.filter(value => value !== "")
expect(values).to.deep.eq([ '31', '5347', '5', '49', '20', '155', 'age' ])
})
})