tests: Delete unnecessary describe() wrapper

This commit is contained in:
Richard Hansen 2020-10-29 18:48:16 -04:00
parent dbe9151d89
commit 4829bb8962

View file

@ -93,7 +93,6 @@ describe(__filename, function() {
let agent; let agent;
before(async function() { agent = await common.init(); }); before(async function() { agent = await common.init(); });
describe('socket.io access checks', function() {
let authorize; let authorize;
let authorizeHooksBackup; let authorizeHooksBackup;
const cleanUpPads = async () => { const cleanUpPads = async () => {
@ -353,5 +352,4 @@ describe(__filename, function() {
assert.equal(message.accessStatus, 'deny'); assert.equal(message.accessStatus, 'deny');
}); });
}); });
});
}); });