⬆️ babel and use async arrow functions
This commit is contained in:
parent
09ada29881
commit
a6547bcbce
2 changed files with 5 additions and 3 deletions
|
@ -19,6 +19,8 @@
|
|||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"accepts": "^1.2.2",
|
||||
"babel-core": "^6.1.2",
|
||||
"babel-preset-stage-3": "^6.1.2",
|
||||
"content-disposition": "~0.5.0",
|
||||
"content-type": "^1.0.0",
|
||||
"cookies": "~0.5.0",
|
||||
|
|
|
@ -9,19 +9,19 @@ describe('require("babel-core/register")', () => {
|
|||
const app = new Koa();
|
||||
const calls = [];
|
||||
|
||||
app.use(async function (ctx, next){
|
||||
app.use(async (ctx, next) => {
|
||||
calls.push(1);
|
||||
await next();
|
||||
calls.push(6);
|
||||
});
|
||||
|
||||
app.use(async function (ctx, next){
|
||||
app.use(async (ctx, next) => {
|
||||
calls.push(2);
|
||||
await next();
|
||||
calls.push(5);
|
||||
});
|
||||
|
||||
app.use(async function (ctx, next){
|
||||
app.use(async (ctx, next) => {
|
||||
calls.push(3);
|
||||
await next();
|
||||
calls.push(4);
|
||||
|
|
Loading…
Reference in a new issue