From f016ae13b652900088ecd79ff78f985b7a6acf43 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sun, 20 Oct 2024 21:50:44 +0200 Subject: [PATCH] test(system): remove obsolete SK common file name test --- test/modules/system.spec.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/test/modules/system.spec.ts b/test/modules/system.spec.ts index e98ec2da870..9b83b0fd489 100644 --- a/test/modules/system.spec.ts +++ b/test/modules/system.spec.ts @@ -1,6 +1,6 @@ import validator from 'validator'; import { describe, expect, it } from 'vitest'; -import { faker, fakerSK } from '../../src'; +import { faker } from '../../src'; import { seededTests } from '../support/seeded-runs'; import { times } from './../support/times'; @@ -414,14 +414,4 @@ describe('system', () => { }); } ); - - describe('extra tests', () => { - describe('commonFileName()', () => { - it('#770', () => { - fakerSK.seed(5423027051750305); - fakerSK.system.commonFileName('xml'); - fakerSK.system.commonFileName('xml'); - }); - }); - }); });