Automated QA and Testing with AI
Chrisszz
33 points
7 comments
June 07, 2026
Related Discussions
Found 5 related stories in 105.7ms across 10,002 title embeddings via pgvector HNSW
- Open-Source Agentic QA Harness with Memory pranshuchittora · 50 pts · May 19, 2026 · 58% similar
- AI (2014) bjornroberg · 69 pts · March 20, 2026 · 57% similar
- Please Use AI garycomtois · 726 pts · May 29, 2026 · 57% similar
- Things I've Done with AI shepherdjerred · 80 pts · March 09, 2026 · 57% similar
- MIT tech review: OpenAI is Building an Automated Researcher Bang2Bay · 13 pts · March 23, 2026 · 57% similar
Discussion Highlights (2 comments)
wrxd
I believe this can work if done on top of traditional testing. I would feel very uneasy to replace deterministic (ok, not always but mostly) test suites with something that is not deterministic at all
simianwords
Scenario testing is the new word for it and I think this is a game changer. Two of the reasons I never liked writing tests is - they didn’t seem to usually assert much internal logic - they would have to be maintained along with the original code I think scenario testing is much better instead because the actual way a person uses a feature hardly changes but the internals might change a lot. So imagine I’m making an e-commerce website. There are lots of internal mechanisms. I’ll have an agent testing all the functionalities as if it were a customer. This gives me much much more confidence while writing code because it is more uncorellated with the code. Tomorrow I can change a lot of internals but the testing agent stays the same. There’s something to note though: not all code is possible to be scenario tested. Like data engineering and other things where the feedback time is huge.