koa-lite/test/context/assert.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

19 lines
376 B
JavaScript

'use strict';
const context = require('../helpers/context');
const assert = require('assert');
describe('ctx.assert(value, status)', () => {
it('should throw an error', () => {
const ctx = context();
try {
ctx.assert(false, 404);
throw new Error('asdf');
} catch (err) {
assert(404 == err.status);
assert(err.expose);
}
});
});