Skip to content

Instantly share code, notes, and snippets.

@harada-shota
Last active December 2, 2021 03:12
Show Gist options
  • Save harada-shota/defc8eeaac3c9a584111fb0a4e1c4ec4 to your computer and use it in GitHub Desktop.
Save harada-shota/defc8eeaac3c9a584111fb0a4e1c4ec4 to your computer and use it in GitHub Desktop.
// .msw/loadOpenAPISpec.ts
import fs from "fs";
import yaml from "js-yaml";
export function getOpenAPISpec() {
return yaml.load(
fs.readFileSync(
require.resolve("{API定義が格納されているパス}/openapi.yaml"),
"utf8"
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment