From af236dd280abf403e1e747fb738f7e9246046435 Mon Sep 17 00:00:00 2001 From: Mateusz Hajder <6783135+mhajder@users.noreply.github.com> Date: Wed, 26 May 2021 13:41:33 +0200 Subject: [PATCH] Add the default IRC network for tests --- test/fixtures/.thelounge/config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/fixtures/.thelounge/config.js b/test/fixtures/.thelounge/config.js index cbc7b926..9767acc9 100644 --- a/test/fixtures/.thelounge/config.js +++ b/test/fixtures/.thelounge/config.js @@ -2,6 +2,8 @@ var config = require("../../../defaults/config.js"); +config.defaults.name = "Example IRC Server"; +config.defaults.host = "irc.example.com"; config.public = true; config.prefetch = true; config.host = config.bind = "127.0.0.1";