uva
Version:
A communication gateway for NodeJS microservices.
13 lines (10 loc) • 389 B
JavaScript
;
var ServerError = require('../lib/index').ServerError;
var expect = require('chai').expect;
describe('ServerError', function() {
it('should contain type and message after creation', function() {
var serverError = new ServerError('foo', 'bar');
expect(serverError.type).to.be.equal('foo');
expect(serverError.message).to.be.equal('bar');
});
});