refactor: refs #7050 removed blank spaces
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jose Antonio Tubau 2024-12-24 12:59:40 +01:00
parent 1cf817be17
commit 638bd1dc26
1 changed files with 0 additions and 3 deletions

View File

@ -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',