Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revert temp test config
Browse files Browse the repository at this point in the history
ST-DDT committed Oct 20, 2024
1 parent 2cf192a commit b007374
Showing 2 changed files with 1 addition and 42 deletions.
21 changes: 1 addition & 20 deletions test/modules/number.spec.ts
Original file line number Diff line number Diff line change
@@ -648,34 +648,15 @@ describe('number', () => {
expect(roman).toMatch(/^[IVXLCDM]+$/);
});

it('should generate a Roman numeral between 1 and 10', () => {
const values = [
'I',
'II',
'III',
'IV',
'V',
'VI',
'VII',
'VIII',
'IX',
'X',
];

const roman = faker.number.romanNumeral({ min: 1, max: 10 });

expect(values).toContain(roman);
});

it.each(
Object.entries({
I: 1,
IV: 4,
IX: 9,
X: 10,
XXVII: 27,
XC: 90,
XCIX: 99,
XXVII: 27,
CCLXIII: 263,
DXXXVI: 536,
DCCXIX: 719,
22 changes: 0 additions & 22 deletions tsconfig.vitest-temp.json

This file was deleted.

0 comments on commit b007374

Please sign in to comment.