fix: make sure signed=false on set/get cookie (#24)

This commit is contained in:
fengmk2
2017-01-13 14:38:13 +08:00
committed by GitHub
parent 1327118e10
commit 1f485fde83
6 changed files with 42 additions and 42 deletions

View File

@@ -1,17 +1,5 @@
/**
* Copyright(c) koajs and other contributors.
* MIT Licensed
*
* Authors:
* fengmk2 <m@fengmk2.com> (http://fengmk2.com)
*/
'use strict';
/**
* Module dependencies.
*/
const assert = require('assert');
const koa = require('koa');
const request = require('supertest');
@@ -482,4 +470,3 @@ function createApp(options) {
return app;
}