alsatian
Version:
TypeScript and JavaScript testing framework for beautiful and readable tests
10 lines • 388 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const match_error_1 = require("./match-error");
class TestTimeoutError extends match_error_1.MatchError {
constructor(testTimeout) {
super(`The test exceeded the given timeout of ${testTimeout}ms.`);
}
}
exports.TestTimeoutError = TestTimeoutError;
//# sourceMappingURL=test-timeout-error.js.map
;