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:
Elie Michel 2017-08-31 14:15:42 +02:00
parent 00e54e49ac
commit 803cff92c8
1 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,11 @@ describe("Server", () => {
describe("WebSockets", () => {
let client;
before((done) => {
Helper.config.public = true;
done();
});
beforeEach(() => {
client = io(webURL, {
path: "/socket.io/",