* Failing test

* Allow numbers in el name tests

* Allow numbers in el names
This commit is contained in:
James Bradley
2020-03-10 14:33:23 +00:00
committed by GitHub
parent 4118d32601
commit 86cf78822d
4 changed files with 9 additions and 9 deletions

View File

@@ -8,7 +8,7 @@ import {
} from './types';
let _id = 1;
const symbolAndNumberRegex = RegExp('[^a-z]');
const symbolAndNumberRegex = RegExp('[^a-z1-6]');
function genId(): number {
return _id++;