How to use the hyper-ts.cookie function in hyper-ts

To help you get started, we’ve selected a few hyper-ts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DenisFrezzato / hyper-ts-fastify / test / index.ts View on Github external
it('should add the cookie', () => {
      const m = H.cookie('name', 'value', {})
      const c = new MockConnection(new MockRequest())
      return assertSuccess(m, c, undefined, [
        { type: 'setCookie', name: 'name', value: 'value', options: {} },
      ])
    })
  })
github DenisFrezzato / hyper-ts-fastify / test / index.ts View on Github external
it('should clear the cookie', () => {
      const m = pipe(
        H.cookie('name', 'value', {}),
        H.ichain(() => H.clearCookie('name', {})),
      )
      const c = new MockConnection(new MockRequest())
      return assertSuccess(m, c, undefined, [
        { type: 'setCookie', name: 'name', value: 'value', options: {} },
        { type: 'clearCookie', name: 'name', options: {} },
      ])
    })
  })