fix(learn): Added another test to check for invalid characters (#41144)

This commit is contained in:
Joshua Pelealu
2021-02-17 10:46:07 -05:00
committed by GitHub
parent fa8163fe7a
commit c15c27f474

View File

@ -98,6 +98,12 @@ Your regex should match `AB1`
assert(userCheck.test('AB1')); assert(userCheck.test('AB1'));
``` ```
Your regex should not match `J%4`
```js
assert(!userCheck.test('J%4'))
```
# --seed-- # --seed--
## --seed-contents-- ## --seed-contents--