From 8753ee3955cb8f0c1953ef42f72355c20d3eaf9f Mon Sep 17 00:00:00 2001 From: Eddie Antonio Santos Date: Tue, 28 Apr 2020 15:55:55 -0600 Subject: [PATCH] =?UTF-8?q?fix(common/lmlayer):=20remove=20it.only=20accid?= =?UTF-8?q?entally=20left=20it=20=F0=9F=98=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/predictive-text/unit_tests/headless/join-word-breaker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/predictive-text/unit_tests/headless/join-word-breaker.js b/common/predictive-text/unit_tests/headless/join-word-breaker.js index ef2c9e55bf..9fd9beb7e7 100644 --- a/common/predictive-text/unit_tests/headless/join-word-breaker.js +++ b/common/predictive-text/unit_tests/headless/join-word-breaker.js @@ -63,7 +63,7 @@ describe('The join word breaker decorator', function () { ] for (let [phrase, joiners, unjoined, expected] of TEST_CASES) { - it.only(`should break «${[phrase]}» as [${expected.join(' ;; ')}]`, function () { + it(`should break «${[phrase]}» as [${expected.join(' ;; ')}]`, function () { let breakWords = decorateWithJoin(defaultWordBreaker, joiners); let unjoinedResult = defaultWordBreaker(phrase).map(onlyText); assert.deepEqual(unjoinedResult, unjoined);