openapi-middleware
Version:
OpenAPI middleware for common api frameworks (pre-release version!)
14 lines (10 loc) • 348 B
JavaScript
import { parse as yamlParse } from 'yaml';
import * as fs from 'fs';
import { resolve } from 'path';
export function getOpenAPIDoc() {
const openApiLocation = resolve('./tests/helpers/openapi-sample-v3.yaml');
const openApiText = fs.readFileSync(openApiLocation)
.toString();
return yamlParse(openApiText);
}
export function test() {}