22 lines
366 B
TypeScript
22 lines
366 B
TypeScript
/**
|
|
* Test Fixtures Index
|
|
*
|
|
* Re-exports all test fixtures for the security module.
|
|
*
|
|
* @module v3/security/__tests__/fixtures
|
|
*/
|
|
|
|
export {
|
|
securityConfigs,
|
|
defaultConfig,
|
|
testPasswords,
|
|
testPaths,
|
|
testCommands,
|
|
testEmails,
|
|
testUUIDs,
|
|
testIdentifiers,
|
|
createTestScenario,
|
|
testScenarios,
|
|
type SecurityConfig,
|
|
} from './configurations.js';
|