resume/test/Config.js
2017-02-17 22:44:15 +01:00

10 lines
269 B
JavaScript
Executable File

/* 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');
});
});