From 0ac0f2f7422b3dd0e4f6d4095e7574795f6ed964 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Wed, 7 Apr 2021 13:46:26 +0100 Subject: [PATCH] Format tests --- .../cypress/integration/createView.spec.js | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/packages/builder/cypress/integration/createView.spec.js b/packages/builder/cypress/integration/createView.spec.js index a34f68422a..2d4bd121cb 100644 --- a/packages/builder/cypress/integration/createView.spec.js +++ b/packages/builder/cypress/integration/createView.spec.js @@ -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() + ) }) })