fetch is not sending cookie - hogehoge666/syno_moments_slider GitHub Wiki

  • fetch API automatically includes cookies in the request header.
  • node-fetch doesn't.
  • use fetch-cookie module to mimic fetch API behavior.

install

npm install --save-dev fetch-cookie

replace global fetch in Jest

const nodeFetch = require('node-fetch');
global.fetch = require('fetch-cookie')(nodeFetch);