diff --git a/test/modules/number.spec.ts b/test/modules/number.spec.ts index 0ca59882453..cfd50b205c0 100644 --- a/test/modules/number.spec.ts +++ b/test/modules/number.spec.ts @@ -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, diff --git a/tsconfig.vitest-temp.json b/tsconfig.vitest-temp.json deleted file mode 100644 index 0686dc0a554..00000000000 --- a/tsconfig.vitest-temp.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "compilerOptions": { - "target": "ESNext", - "moduleResolution": "Bundler", - "module": "ESNext", - "strict": true, - "noEmit": true, - "stripInternal": true, - "verbatimModuleSyntax": true, - "skipLibCheck": true, - "allowSyntheticDefaultImports": true, - "resolveJsonModule": true, - "emitDeclarationOnly": false, - "incremental": true, - "tsBuildInfoFile": "/home/amaan/Desktop/Open Source/fakerrrr/node_modules/.pnpm/vitest@2.1.2_@types+node@20.16.11_@vitest+ui@2.1.2_jsdom@25.0.1/node_modules/vitest/dist/chunks/tsconfig.tmp.tsbuildinfo" - }, - "exclude": [ - "node_modules", - "dist", - "test/scripts/apidocs/temp" - ] -} \ No newline at end of file