UNPKG

dockest

Version:

Dockest is an integration testing tool aimed at alleviating the process of evaluating unit tests whilst running multi-container Docker applications.

6 lines 237 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = void 0; const sleep = (ms = 1000) => new Promise((resolve) => setTimeout(resolve, ms)); exports.sleep = sleep; //# sourceMappingURL=sleep.js.map