| 12345678910111213141516171819202122 |
- const CollaborationTestOrchestrator = require('../src/index');
- const CollaborativeActions = require('../src/actions');
- class CustomTestScenario extends CollaborationTestOrchestrator {
- async executeTestScenario() {
- // Only authentication - no other test cases
- }
- }
- // Run custom scenario if this file is executed directly
- if(require.main === module) {
- const customTest = new CustomTestScenario();
- customTest.runCollaborationTest()
- .then(() => {
- process.exit(0);
- })
- .catch((error) => {
- process.exit(1);
- });
- }
- module.exports = CustomTestScenario;
|