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
@ -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…
Reference in New Issue
Block a user