Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
The regular expression should not use the
g
flag.Chai uses
re.exec
when it tests a regular expressionre
. This regular expression matches'000'
and itslastIndex
is set to3
(because theg
flag is set). The next test callsre.exec('110')
. The match starts from the newlastIndex
position and it fails.There is something weird indeed with the tests, if you only leave that one in the sample tests, your code passes it. But, your code is not ok, and it returns true for any combination of 0 and 1 with 3 digits.
Test failing even though it is a match when I console.log the test using
multipleOf3Regex.test('110')
My solution is
const multipleOf3Regex = /^[0-1]{3}$/g
This comment is hidden because it contains spoiler information about the solution
No, they are not identical:
The kata doesn't seem to work for me. 4 tests comes back similar to the statement below:
expected 'Jacob and Alex like ths' to equal 'Jacob and Alex like this'
Are they not identical?!