custom-scenario.js 566 B

12345678910111213141516171819202122
  1. const CollaborationTestOrchestrator = require('../src/index');
  2. const CollaborativeActions = require('../src/actions');
  3. class CustomTestScenario extends CollaborationTestOrchestrator {
  4. async executeTestScenario() {
  5. // Only authentication - no other test cases
  6. }
  7. }
  8. // Run custom scenario if this file is executed directly
  9. if(require.main === module) {
  10. const customTest = new CustomTestScenario();
  11. customTest.runCollaborationTest()
  12. .then(() => {
  13. process.exit(0);
  14. })
  15. .catch((error) => {
  16. process.exit(1);
  17. });
  18. }
  19. module.exports = CustomTestScenario;