Files
cloudron-box/src/test/sysinfo-test.js
T

14 lines
293 B
JavaScript
Raw Normal View History

2019-07-25 11:26:53 -07:00
/* global it:false */
/* global describe:false */
'use strict';
2021-08-13 10:41:10 -07:00
const expect = require('expect.js'),
2019-07-25 11:26:53 -07:00
sysinfo = require('../sysinfo.js');
describe('config', function () {
it('test machine has IPv6 support', function () {
expect(sysinfo.hasIPv6()).to.equal(true);
});
});