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`.
|
// Note that if there is no injection, we no longer need `inject` OR `injectAsync`.
|
||||||
it('should wait for returned promises', async(() => {
|
it('should wait for returned promises', async(() => {
|
||||||
somePromise.then() => { expect(true).toEqual(true); });
|
somePromise.then(() => { expect(true).toEqual(true); });
|
||||||
}));
|
}));
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user