diff --git a/js/server/tests/shell-foxx.js b/js/server/tests/shell-foxx.js index 99f8a23d73..b2334ebcdc 100644 --- a/js/server/tests/shell-foxx.js +++ b/js/server/tests/shell-foxx.js @@ -1419,24 +1419,6 @@ function SetupAuthorization () { assertEqual(err.message, "Please provide the cookieLifetime"); }, - testRefusesMissingCookieName: function () { - var err; - - app = new FoxxController(fakeContext); - - try { - app.activateAuthentication({ - type: "cookie", - cookieLifetime: 360000, - sessionLifetime: 600 - }); - } catch (e) { - err = e; - } - - assertEqual(err.message, "Please provide the cookieName"); - }, - testRefusesMissingSessionLifetime: function () { var err;