Skip to content

Commit

Permalink
Merge pull request #39 from silvermine/fix_misc_typos
Browse files Browse the repository at this point in the history
chore: Fix misc typos in Response unit tests
  • Loading branch information
jthomerson authored Mar 21, 2019
2 parents 17426c1 + c45229a commit 9c33a1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/Response.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { RequestEvent, CookieOpts } from '../src/request-response-types';
// function type used for reusable test extension below
type Extender = (resp: Response, output: any) => void;

describe('Request', () => {
describe('Response', () => {
const EMPTY_CB = (): void => {}; // eslint-disable-line no-empty-function

let app: Application, sampleReq: Request, sampleResp: Response;
Expand All @@ -19,7 +19,6 @@ describe('Request', () => {
app = new Application();
sampleReq = new Request(app, apiGatewayRequest(), handlerContext());
sampleResp = new Response(app, sampleReq, EMPTY_CB);

});

describe('constructor', () => {
Expand Down

0 comments on commit 9c33a1e

Please sign in to comment.