Files
cloudron-box/src/test/sysinfo-test.js
T
Girish Ramakrishnan 9b74bb73aa config.js is dead, long live config.js
we use settings now
2019-07-26 14:51:51 -07:00

14 lines
291 B
JavaScript

/* global it:false */
/* global describe:false */
'use strict';
var expect = require('expect.js'),
sysinfo = require('../sysinfo.js');
describe('config', function () {
it('test machine has IPv6 support', function () {
expect(sysinfo.hasIPv6()).to.equal(true);
});
});