import { http, HttpResponse } from 'msw'; import { nanoid } from '@reduxjs/toolkit'; const token = nanoid(); export const handlers = [ http.post('/guest-login', () => { return HttpResponse.json( { guest: { id: 1, firstName: 'Michael', lastName: 'Hunteman', attendance: 'false', meal: '', restrictions: '', plusOne: '', advice: '' }, token, } ) }), http.patch('/guests/1', () => { return HttpResponse.json( { id: 1, firstName: 'Michael', lastName: 'Hunteman', attendance: 'true', meal: 'beef', restrictions: '', plusOne: '', advice: '' } ) }) ];