| 12345678910111213141516171819 |
- import { expect, test } from 'vitest'
- import { API_URL } from '@/lib/constants'
- test('MSW works as expected', async () => {
- const res = await fetch(`${API_URL}/msw/test`)
- const json = await res.json()
- expect(res.status).toBe(200)
- expect(json).toEqual({ message: 'Hello from MSW!' })
- })
- test('MSW errors on missing endpoints', async () => {
- expect(async () => {
- const res = await fetch(`${API_URL}/endpoint-that-doesnt-exist`)
- const json = await res.json()
- expect(json).toEqual({ message: '🚫 MSW missed' })
- })
- })
|