- Renamed `getWebbhookConfig` and `updateWebbhookConfig` to `getWebhookConfig` and `updateWebhookConfig` respectively for consistency. - Updated integration tests to reflect the new function names. - Refactored request helper methods to use `getFullPath` for API endpoint construction. - Removed unnecessary parameters in `stopRecording` calls across various tests. - Cleaned up test scenarios by removing redundant room deletion logic. - Ensured proper handling of recording states in tests to avoid race conditions.
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
import baseConfig from './jest.config.mjs';
|
|
|
|
const integrationConfig = {
|
|
...baseConfig,
|
|
|
|
runInBand: true,
|
|
forceExit: true,
|
|
detectOpenHandles: true,
|
|
testMatch: ['**/tests/integration/**/*.(spec|test).ts']
|
|
};
|
|
|
|
export default integrationConfig;
|