fix(curriculum): add additional test to telephone regex challenge (#41852)

This commit is contained in:
Kyle Holmberg
2021-04-18 13:36:09 -07:00
committed by GitHub
parent 90fe009374
commit 02f232caf4

View File

@ -180,6 +180,12 @@ assert(telephoneCheck('(555-555-5555') === false);
assert(telephoneCheck('(555)5(55?)-5555') === false);
```
`telephoneCheck("55 55-55-555-5")` should return `false`.
```js
assert(telephoneCheck('55 55-55-555-5') === false);
```
# --seed--
## --seed-contents--