8389-testToMaster #1207

Merged
alexm merged 180 commits from 8389-testToMaster into master 2025-01-14 06:32:35 +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',