Format tests
This commit is contained in:
parent
46a02ddb0c
commit
99c8897500
|
@ -109,7 +109,8 @@ 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",
|
"Students",
|
||||||
"23.333333333333332",
|
"23.333333333333332",
|
||||||
"1650",
|
"1650",
|
||||||
|
@ -117,7 +118,8 @@ context("Create a View", () => {
|
||||||
"25",
|
"25",
|
||||||
"20",
|
"20",
|
||||||
"70",
|
"70",
|
||||||
].sort())
|
].sort()
|
||||||
|
)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue