resume/test/Config.js
2017-02-16 19:38:18 +01:00

10 lines
269 B
JavaScript

/* global it, describe */
const assert = require('assert');
const Config = require('../src/Config');
describe('Config', () => {
it('should have property port', () => {
assert(Config.port != null);
assert(typeof Config.port == 'number');
});
});