II.
LibraryProcess overview
Reference · livelib-process:qa-testing-automation--continuous-testing
continuous-testing overview
Continuous Testing Pipeline - Implement automated continuous testing across the entire software delivery lifecycle, integrating tests at every stage from commit to production with quality gates, parallel execution, fast feedback loops, and comprehensive test orchestration for shift-left and shift-right testing practices.
Attributes
displayName
continuous-testing
description
Continuous Testing Pipeline - Implement automated continuous testing across the entire software delivery lifecycle,
integrating tests at every stage from commit to production with quality gates, parallel execution, fast feedback loops,
and comprehensive test orchestration for shift-left and shift-right testing practices.
libraryPath
library/specializations/qa-testing-automation/continuous-testing.js
specialization
qa-testing-automation
references
- - Continuous Testing: https://martinfowler.com/articles/continuousIntegration.html - Testing Pyramid: https://martinfowler.com/articles/practical-test-pyramid.html - Shift-Left Testing: https://www.ibm.com/topics/shift-left-testing - Shift-Right Testing: https://www.dynatrace.com/news/blog/what-is-shift-right-testing/ - CI/CD Best Practices: https://www.atlassian.com/continuous-delivery/principles - Test Automation Patterns: https://www.selenium.dev/documentation/test_practices/
example
const result = await orchestrate('specializations/qa-testing-automation/continuous-testing', {
projectPath: '/path/to/project',
repositoryUrl: 'https://github.com/org/repo',
cicdPlatform: 'github-actions',
testStrategy: {
unit: { enabled: true, threshold: 80, timeout: 300 },
integration: { enabled: true, threshold: 70, timeout: 600 },
e2e: { enabled: true, threshold: 90, timeout: 1800 },
performance: { enabled: true, threshold: 95 },
security: { enabled: true, blocking: true }
},
qualityGates: {
coverage: 80,
passRate: 95,
performanceBudget: 3000,
securityScan: 'blocking'
}
});
usesAgents
- cicd-test-integration
Outgoing edges
lib_applies_to_domain1
- domain:software-engineering·DomainSoftware Engineering
lib_belongs_to_specialization1
- specialization:qa-testing-automation·Specialization
lib_covers_topic2
- topic:continuous-integration·TopicContinuous Integration
- topic:test-driven-development·TopicTest-Driven Development
lib_implements_workflow2
- workflow:pull-request-lifecycle·Workflow
- workflow:feature-development·Workflow
lib_involves_role2
- role:qa-engineer·RoleQA Engineer
- role:devops-engineer·Role
lib_requires_skill_area1
- skill-area:e2e-testing·SkillAreaEnd-to-End Testing
uses_agent1
- lib-agent:qa-testing-automation--cicd-test-integration·LibraryAgentCI/CD Test Integration Expert
Incoming edges
None.