Spaces:
Paused
Paused
| /** | |
| * Tests for the Hosts chat plugin | |
| * Written by Annika | |
| */ | |
| ; | |
| 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>` | |
| ); | |
| }); | |
| }); | |