@shopify/jest-koa-mocks
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -12,2 +12,3 @@ /// <reference types="koa" /> | ||
body?: any; | ||
session?: any; | ||
}; | ||
@@ -14,0 +15,0 @@ } |
{ | ||
"name": "@shopify/jest-koa-mocks", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "", |
# `@shopify/jest-koa-mocks` | ||
Utilities to easily stub Koa context and cookies. The middleware are aimed to help you write unit tests for your koa middleware without needing to set up any kind of actual server in your test environment. When test writing is easy and fun you'll want to write more tests ✨😎 | ||
Utilities to easily stub Koa context and cookies. The utilities are designed to help you write unit tests for your koa middleware without needing to set up any kind of actual server in your test environment. When test writing is easy and fun you'll want to write more tests. ✨😎 | ||
@@ -5,0 +5,0 @@ ## Installation |
@@ -14,3 +14,6 @@ import {URL} from 'url'; | ||
cookies: MockCookies; | ||
request: Context['Request'] & {body?: any}; | ||
request: Context['Request'] & { | ||
body?: any; | ||
session?: any; | ||
}; | ||
} | ||
@@ -17,0 +20,0 @@ |
23605
496