29 lines
597 B
TypeScript
29 lines
597 B
TypeScript
// tests/api/config.ts
|
|
|
|
export const config = {
|
|
// API Configuration
|
|
baseURL: 'http://localhost:3000',
|
|
apiKey: 'bnt_71e7e16732ac5e21f597edc56e99e8c3696e713552ec9d1f44dfeffb2ef7c495',
|
|
|
|
// Paths
|
|
resultsDir: '../../results',
|
|
fixturesDir: './fixtures',
|
|
|
|
// Timeouts
|
|
requestTimeout: 30000,
|
|
generationTimeout: 60000,
|
|
|
|
// Test settings
|
|
verbose: true,
|
|
saveImages: true,
|
|
cleanupOnSuccess: false,
|
|
};
|
|
|
|
export const endpoints = {
|
|
generations: '/api/v1/generations',
|
|
images: '/api/v1/images',
|
|
flows: '/api/v1/flows',
|
|
live: '/api/v1/live',
|
|
analytics: '/api/v1/analytics',
|
|
};
|