mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 05:28:27 +00:00
5 lines
141 B
TypeScript
5 lines
141 B
TypeScript
export class TestingUtilities {
|
|
public static sleep = (ms) => {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|
|
} |