fix(curriculum): add test case to check country code (#45100)

* Added new test case to argument optional challenge

* Added new test case to telephone num js challenge
This commit is contained in:
Poonkuzhali
2022-02-18 13:09:51 -05:00
committed by GitHub
parent fd14608492
commit 6f628e6133

View File

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