aboutsummaryrefslogtreecommitdiff
path: root/test/modules/string.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules/string.spec.ts')
-rw-r--r--test/modules/string.spec.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/modules/string.spec.ts b/test/modules/string.spec.ts
index 7b3be347..3dc8a255 100644
--- a/test/modules/string.spec.ts
+++ b/test/modules/string.spec.ts
@@ -1,3 +1,4 @@
+import isULID from 'validator/lib/isULID';
import { describe, expect, it } from 'vitest';
import { FakerError, faker } from '../../src';
import { seededTests } from '../support/seeded-runs';
@@ -774,6 +775,7 @@ describe('string', () => {
const ulid = faker.string.ulid();
const regex = /^[0-7][0-9A-HJKMNP-TV-Z]{25}$/;
expect(ulid).toMatch(regex);
+ expect(ulid).toSatisfy(isULID);
});
});