From 044260def6a1d7704404d78f5afb35c89435fd1f Mon Sep 17 00:00:00 2001 From: seb Date: Thu, 30 Mar 2023 20:50:04 -0400 Subject: [PATCH] Update test.js --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index cdbab99..dd22dca 100644 --- a/test.js +++ b/test.js @@ -52,7 +52,7 @@ test("Tiles Need to be 2x2 Grid", async () => { await setTimeout(10); let grid = dom.window.document.getElementById("challenge-grid"); assert.ok( - ["repeat(2,1fr)", "1fr1fr", "50%50%"].includes( + ["repeat(2,1fr)", "1fr1fr", "50%50%", "auto auto"].includes( dom.window.getComputedStyle(grid)._values["grid-template-columns"].replace(/\s/g, "") ) );