repo for angularjs testing training
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
393 B

it('compares some lists', function() {
const expectedListOfPersons = [
{name: 'Tom', age:20, dob: '20/10/2000'},
{name: 'John', age:30, dob: '20/10/1990'}
];
const actualListOfPersons = [
{name: 'Thomas', age:20, dob: '20/10/2000'},
{name: 'Johnny', age:30, dob: '20/10/1990'}
];
expect(actualCells).toEqual(expectedCells);
});