7. Add another test to check a property
import { AppComponent } from './app.component';
describe(`Component: App Component`, () => {
it('add 1+1 - PASS', () => {
expect(1 + 1).toEqual(2);
});
it(`title equals 'Angular Superpowers'`, () => {
const component = new AppComponent();
expect(component.title).toEqual('testing');
});
});export class AppComponent implements OnInit {
title = 'testing';
...
}Last updated