Format tests

This commit is contained in:
Andrew Kingston 2021-04-07 13:46:26 +01:00
parent 46a02ddb0c
commit 99c8897500
1 changed files with 11 additions and 9 deletions

View File

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