tsoid
Version:
Typed functional library to deal with async operations.
30 lines (29 loc) • 1.49 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const safe_1 = require("../safe");
describe('safe', () => {
const functionThatThrow = (n) => __awaiter(void 0, void 0, void 0, function* () {
if (n === 3) {
throw new Error('Error!');
}
return n;
});
it('Should execute the computation safely', () => __awaiter(void 0, void 0, void 0, function* () {
const res = yield safe_1.default(functionThatThrow, 2);
expect(res).toBe(2);
}));
it('Should execute the computation that throws safely', () => __awaiter(void 0, void 0, void 0, function* () {
const res = yield safe_1.default(functionThatThrow, 3);
expect(res).toBeInstanceOf(Error);
expect(res.message).toBe('Error!');
}));
});