fix(common/lmlayer): remove it.only accidentally left it 😬

This commit is contained in:
Eddie Antonio Santos 2020-04-28 15:55:55 -06:00
parent acf7aab588
commit 8753ee3955
No known key found for this signature in database
GPG key ID: DD411EA4D9509D87

View file

@ -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);