Angular - Testing
Identify the issue in this Angular test:
describe('Promise test', () => { it('checks resolved value', () => { const promise = Promise.resolve(10); expect(promise).toBe(10); }); });