#7050 testCrudModel #1077

Merged
jtubau merged 11 commits from 7050-testCrudModel into dev 2024-12-26 11:14:16 +00:00
1 changed files with 0 additions and 3 deletions
Showing only changes of commit 638bd1dc26 - Show all commits

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