Exports: - createCosmosMocks(): full Cosmos DB mock factory for vitest - TEST_USERS, TEST_JWT_SECRET, createTestTokenPayload(): auth fixtures - injectGet/Post/Patch/Delete(): Fastify inject wrappers - expectHealthOk(): health endpoint assertion helper
16 lines
342 B
TypeScript
16 lines
342 B
TypeScript
export { createCosmosMocks, type CosmosMocks, type MockItem } from './cosmos-mocks.js';
|
|
export {
|
|
TEST_JWT_SECRET,
|
|
TEST_USERS,
|
|
createTestTokenPayload,
|
|
type TestUserKey,
|
|
} from './auth-fixtures.js';
|
|
export {
|
|
injectGet,
|
|
injectPost,
|
|
injectPatch,
|
|
injectDelete,
|
|
expectHealthOk,
|
|
type InjectResult,
|
|
} from './fastify-helpers.js';
|