1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Format tests

This commit is contained in:
Andrew Kingston 2021-04-07 13:46:26 +01:00
parent f9a54d08f5
commit 0ac0f2f742

View file

@ -109,7 +109,8 @@ context("Create a View", () => {
.find(".ag-cell")
.then($values => {
const values = Array.from($values).map(value => value.textContent)
expect(values.sort()).to.deep.eq([
expect(values.sort()).to.deep.eq(
[
"Students",
"23.333333333333332",
"1650",
@ -117,7 +118,8 @@ context("Create a View", () => {
"25",
"20",
"70",
].sort())
].sort()
)
})
})