We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b46a68f commit 39536e8Copy full SHA for 39536e8
test/random.spec.ts
@@ -184,7 +184,6 @@ describe('random', () => {
184
});
185
186
expect(alphaText).toHaveLength(5);
187
- expect(alphaText).match(/^[0-9]{5}$/);
188
for (const bannedChar of bannedChars) {
189
expect(alphaText).not.includes(bannedChar);
190
}
@@ -197,7 +196,6 @@ describe('random', () => {
197
196
198
199
200
- expect(alphaText).match(/^[a-z]{5}$/);
201
202
203
0 commit comments