[221215] supertest에서 cookies 값 주는법

뜨개발자·2022년 12월 15일
0

TIL

목록 보기
30/75
test('테스트 이름', async () =>{
  const 담을변수명 = await supertest(app)
  	.get||post||등등메소드('url')
  	.send({보낼자료key: 보낼자료value, ...})
    .set('Cookie', '키값=밸류값')

위 코드처럼 .set 뒤로 'Cookie'에 (주의! C가 대문자) '키값=밸류값'으로 할당해주면 된다.
그럼 원래 코드드에서

변수명(req, res){
req.cookies.키값

형태로 읽을 수 있다!

profile
뜨개질하는 개발자

0개의 댓글