You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _tutorials/async.md
+1-4
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Asynchronous code is common in modern Javascript applications. Testing it is mos
11
11
12
12
Jasmine supports three ways of managing asynchronous work: `async`/`await`, promises, and callbacks. If Jasmine doesn't detect one of these, it will assume that the work is synchronous and move on to the next thing in the queue as soon as the function returns. All of these mechanisms work for `beforeEach`, `afterEach`, `beforeAll`, `afterAll`, and `it`.
13
13
14
-
## `async`/`await`
14
+
## `async/await`
15
15
Usually, the most convenient way to write async tests is to use `async`/`await`. `async` functions implicitly return a promise. Jasmine will wait until the returned promise is either resolved or rejected before moving on to the next thing in the queue. Rejected promises will cause a spec failure, or a suite-level failure in the case of `beforeAll` or `afterAll`.
16
16
17
17
```javascript
@@ -52,11 +52,8 @@ It's vital that the `done` callback be called exactly once, and that calling `do
0 commit comments