Files
recflare/apps/ns/src/test/integration/api.test.ts
T
Devin Zuczek ba33003343 updating types
2026-06-30 23:57:29 -04:00

26 lines
723 B
TypeScript

import { exports } from 'cloudflare:workers'
import { describe, expect, test } from 'vitest'
import '../../ns.app'
import { buildEndpoints } from '../../endpoints'
const ORIGIN = 'https://example.com'
// Must match the DOMAIN var default in apps/ns/wrangler.jsonc.
const TEST_DOMAIN = 'rec.example.com'
describe('ns endpoints', () => {
test('GET / returns the endpoints document', async () => {
const res = await exports.default.fetch(`${ORIGIN}/`)
expect(res.status).toBe(200)
const body = await res.json()
expect(body).toEqual(buildEndpoints(TEST_DOMAIN))
})
test('unknown path returns 404', async () => {
const res = await exports.default.fetch(`${ORIGIN}/nope`)
expect(res.status).toBe(404)
})
})