domain-glossary-procedure
Version:
A declaration of intuitive and unambiguous **Procedure** resources and mechanisms.
15 lines • 550 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const test_fns_1 = require("test-fns");
describe('Procedure', () => {
(0, test_fns_1.given)('a simple procedure', () => {
const doIt = (input) => {
return { done: true };
};
(0, test_fns_1.then)('it should have no issues extracting the types', () => {
// @ts-expect-error: Type 'number' is not assignable to type 'string'.
const reason = 821;
});
});
});
//# sourceMappingURL=Procedure.test.js.map