mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-09 07:01:27 -07:00
26 lines
723 B
TypeScript
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)
|
|
})
|
|
})
|