From 7b9aed73f3337f43084216ac9298826bb39ff5bf Mon Sep 17 00:00:00 2001 From: Paul Kaplan <pkaplan@media.mit.edu> Date: Thu, 22 Aug 2019 09:44:22 -0400 Subject: [PATCH] Fix multi-word matching in the blocks --- test/integration/blocks.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/blocks.test.js b/test/integration/blocks.test.js index 1f7ab546a..f3ccc3e66 100644 --- a/test/integration/blocks.test.js +++ b/test/integration/blocks.test.js @@ -240,7 +240,7 @@ describe('Working with the blocks', () => { await clickText('Code'); await clickText('Sound', scope.blocksTab); await driver.sleep(500); // Wait for scroll to finish - await clickText('A Bass', scope.blocksTab); + await clickText('A\u00A0Bass', scope.blocksTab); // Need for block text }); // Regression test for switching between editor/player causing toolbox to stop updating -- GitLab