Angular - Testing
What will happen when this Angular test runs?
describe('Boolean test', () => { it('expects false to be true', () => { expect(false).toBe(true); }); });