I know I can use jest.setTimeout() to set a custom timeout for a test. I'm doing this below. MINUTE has the value 60 * 1000.
Why isn't Jest applying my timeout?
    thrown: "Exceeded timeout of 5000 ms for a test.
    Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test."
      13 |
      14 | describe(`integration with API provider`, () => {
    > 15 |   it(`works`, async () => {
         |   ^
      16 |     // Just in case network is slow.
      17 |     jest.setTimeout(1 * MINUTE);