Files
cloudron-box/src/test/sysinfo-test.js
T
2021-08-13 11:34:05 -07:00

14 lines
293 B
JavaScript

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