10 lines
269 B
JavaScript
Executable File
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');
|
|
});
|
|
});
|