Skip to content
This repository was archived by the owner on Aug 24, 2023. It is now read-only.

Latest commit

 

History

History
17 lines (13 loc) · 191 Bytes

File metadata and controls

17 lines (13 loc) · 191 Bytes

How to Use

npm install @lunit/timeout
import { timeout } from '@lunit/timeout';

async function mockAPI() {
  await timeout(1000);

  return {
    data: 'foo',
  };
}