Angular - Testing
Given this Angular test snippet, what will be the output when the test runs?
describe('Simple test', () => {
it('should pass', () => {
expect(true).toBe(true);
});
});