Jofthomas's picture
Upload 4781 files
5c2ed06 verified
raw
history blame contribute delete
430 Bytes
/**
* Tests for the Hosts chat plugin
* Written by Annika
*/
'use strict';
const assert = require('assert').strict;
const hosts = require('../../../dist/server/chat-plugins/hosts');
describe("Hosts plugin", () => {
it('should properly visualize an empty list of ranges', () => {
assert.equal(
hosts.visualizeRangeList([]),
`<tr><th>Lowest IP address</th><th>Highest IP address</th><th>Host</th></tr>`
);
});
});