/** * 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([]), `Lowest IP addressHighest IP addressHost` ); }); });