UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

33 lines 1.83 kB
"use strict"; 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()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = __importDefault(require("fs")); const path_1 = __importDefault(require("path")); const open_api_doc_modifier_1 = require("./open-api-doc-modifier"); describe('#openApiDocModifier', function () { it('should exist', () => __awaiter(this, void 0, void 0, function* () { const data = fs_1.default.readFileSync(path_1.default.join('src', 'static', 'sample-open-api-doc.yaml')).toString(); expect(data).toBeTruthy(); expect(data.length).toBeGreaterThan(0); const mods = { newServerPath: 'https://api.sample.com/cw', removeTags: ['Neon', 'CORS'], removeEndpoints: [new RegExp('options .*')], }; const result = new open_api_doc_modifier_1.OpenApiDocModifier(mods).modifyOpenApiDoc(data); expect(result).toBeTruthy(); // Logger.info('G: \n\n%s', result); }), 30000); }); //# sourceMappingURL=open-api-doc-modifier.spec.js.map