koa-lite/test/context/state.js
broucz 4b1a1da652 test: switch all functions to arrow functions
closes #553

Update test: application -> use() should throw if not a function

Fix lint

Use arrow function

Refactor test using arrow function

Remove non mandatory brackets

fix for merge

Fix: missing refactor after merge

Use arrow function for old generator
2015-11-02 11:22:05 -08:00

23 lines
418 B
JavaScript

'use strict';
const request = require('supertest');
const assert = require('assert');
const Koa = require('../..');
describe('ctx.state', () => {
it('should provide a ctx.state namespace', done => {
const app = new Koa();
app.use(ctx => {
assert.deepEqual(ctx.state, {});
});
const server = app.listen();
request(server)
.get('/')
.expect(404)
.end(done);
});
});