1
0
Fork 0
mirror of synced 2024-09-28 23:31:43 +12:00

Format tests

This commit is contained in:
Andrew Kingston 2021-04-07 13:46:26 +01:00
parent 46a02ddb0c
commit 99c8897500

View file

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