6. Add simple failing test
describe(`Component: App Component`, () => {
it('add 1+1 - PASS', () => {
expect(1 + 1).toEqual(2);
});
it('add 1+1 - FAIL', () => {
expect(1 + 1).toEqual(42);
});
});Last updated
describe(`Component: App Component`, () => {
it('add 1+1 - PASS', () => {
expect(1 + 1).toEqual(2);
});
it('add 1+1 - FAIL', () => {
expect(1 + 1).toEqual(42);
});
});Last updated