mirror of
https://github.com/thelounge/thelounge
synced 2025-02-16 13:18:24 +00:00
Set public to true for websocket tests
A side effect of LDAP auth tests was breaking these other tests, that should have already forced public instance in their pre-condition.
This commit is contained in:
parent
00e54e49ac
commit
803cff92c8
1 changed files with 5 additions and 0 deletions
|
@ -37,6 +37,11 @@ describe("Server", () => {
|
|||
describe("WebSockets", () => {
|
||||
let client;
|
||||
|
||||
before((done) => {
|
||||
Helper.config.public = true;
|
||||
done();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
client = io(webURL, {
|
||||
path: "/socket.io/",
|
||||
|
|
Loading…
Add table
Reference in a new issue