Ejemplo n.º 1
0
 it("nexts", () => {
   middleware.authenticateOrLogin({ method: "OPTIONS" }, null, next)
   expect(next.called).toBeTruthy()
 })
Ejemplo n.º 2
0
 it("nexts", () => {
   middleware.authenticateOrLogin({ accepts: sinon.stub().returns("json") }, null, next)
   expect(next.called).toBeTruthy()
 })