fix(docs): Fix a missing opening bracket (#8331)
This commit is contained in:
parent
68f9aaf214
commit
d75f928fca
|
@ -348,7 +348,7 @@ it('should wait for returned promises', async(inject([FancyService], (service) =
|
|||
})));
|
||||
// Note that if there is no injection, we no longer need `inject` OR `injectAsync`.
|
||||
it('should wait for returned promises', async(() => {
|
||||
somePromise.then() => { expect(true).toEqual(true); });
|
||||
somePromise.then(() => { expect(true).toEqual(true); });
|
||||
}));
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue