From 638bd1dc260b1c2de2e3517eed18bb5227aed926 Mon Sep 17 00:00:00 2001 From: jtubau Date: Tue, 24 Dec 2024 12:59:40 +0100 Subject: [PATCH] refactor: refs #7050 removed blank spaces --- test/vitest/__tests__/components/common/CrudModel.spec.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/vitest/__tests__/components/common/CrudModel.spec.js b/test/vitest/__tests__/components/common/CrudModel.spec.js index e28b6003e..e0afd30ad 100644 --- a/test/vitest/__tests__/components/common/CrudModel.spec.js +++ b/test/vitest/__tests__/components/common/CrudModel.spec.js @@ -157,7 +157,6 @@ describe('CrudModel', () => { }); it('should return true if array is empty', async () => { - dummyArray = []; result = vm.isEmpty(dummyArray); @@ -165,7 +164,6 @@ describe('CrudModel', () => { }); it('should return false if array is not empty', async () => { - dummyArray = [1,2,3]; result = vm.isEmpty(dummyArray); @@ -174,7 +172,6 @@ describe('CrudModel', () => { }); describe('resetData()', () => { - it('should add $index to elements in data[] and sets originalData and formData with data', async () => { data = [{ name: 'Tony',