From 55a8fc520e6a793ea3b5cedd36bc23797b12ea86 Mon Sep 17 00:00:00 2001 From: Marie Malarme Date: Wed, 10 Mar 2021 11:11:34 +0000 Subject: [PATCH] keycodes-symphony: fix test which was checking property `background` instead of `background-color` --- dom/keycodes-symphony_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/keycodes-symphony_test.js b/dom/keycodes-symphony_test.js index d9f68ccb..d80d7bd3 100644 --- a/dom/keycodes-symphony_test.js +++ b/dom/keycodes-symphony_test.js @@ -46,7 +46,7 @@ tests.push(async ({ page, eq }) => { } const getNotesBg = await page.$$eval('.note', (nodes) => { - return nodes.map((note) => note.style.background) + return nodes.map((note) => note.style.backgroundColor) }) const colors = [...new Set(getNotesBg)]