1 test.only("should not pass", async (done) => {
2 try {
3 const a = await getAsync()
4 expect(a).toEqual(2)
5 done()
6 } catch (e) {
7 // have to manually handle the failed test with "done.fail"
8 done.fail(e)
9 }
10 })