UNPKG

@iamkenos/iris

Version:

Test API endpoints with Axios & Jest using a collection of custom matchers and built-in utility functions.

28 lines (26 loc) 617 B
export enum MimeType { APP_GZIP = "application/gzip", APP_GRAPHQL = "application/graphql", APP_JSON = "application/json", APP_PDF = "application/pdf", APP_XML = "application/xml", APP_ZIP = "application/zip", IMG_BMP = "image/bmp", IMG_GIF = "image/gif", IMG_JPEG = "image/jpeg", IMG_PNG = "image/png", TEXT_CSV = "text/csv", TEXT_HTML = "text/html", TEXT_PLAIN = "text/plain" } export enum BufferEncoding { ASCII = "ascii", UTF8 = "utf8", UTF16LE = "utf16le", UCS2 = "ucs2", BASE64 = "base64", BASE64URL = "base64url", LATIN1 = "latin1", BINARY = "binary", HEX = "hex" }