VOOZH about

URL: https://thenewstack.io/who-should-run-tests-on-the-future-of-qa/

⇱ Who Should Run Tests? On the Future of QA - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2024-06-13 07:36:20
Who Should Run Tests? On the Future of QA
sponsor-signadot,sponsored-post-contributed,
DevOps / Operations / Software Testing

Who Should Run Tests? On the Future of QA

Let’s explore how the role of QA grows in a world where testing is shifting left.
Jun 13th, 2024 7:36am by Nočnica Mellifera
👁 Featued image for: Who Should Run Tests? On the Future of QA
Image from Tsunami Designer on Shutterstock.
Signadot sponsored this post.

This is part of an ongoing series. Read previous parts:

QA is a funny thing. It has meant everything from “the most senior engineer who puts the final stamp on all code” to “the guy who just sort of clicks around randomly and sees if anything breaks.” I’ve seen seen QA operating in all different levels of the organization, from engineers tightly integrated with each team to an independent, almost outside organization.

A basic question as we look at shifting testing left, as we put more testing responsibility with the product teams, is what the role of QA should be in this new arrangement. This can be generalized as “who should own tests?” Microsoft retired its “dedicated software engineer in test” (SDET) position in 2014, while Apple and Amazon retain a high focus on dedicated QA. If the FAANG companies can’t decide whether we need dedicated QA roles, how can the rest of us answer the question?

Let’s explore how QA’s role grows in a world where testing is shifting left.

QA Has Long Been a Victim of Trends, but QA Continues

In my first technical role at New Relic, I was meeting all the engineering teams who wrote APM (application performance management) agents for the major web development languages. Each team had a similar makeup, but I asked, “Who’s the QA person on the Ruby team?”

“There isn’t one,” The head of the Ruby team replied. “Rails doesn’t require QA.”

That team’s hubris can be forgiven: There’s never a new hot language on the scene without someone insisting that it solves every known software problem, and makes bugs, failures and unexpected behavior impossible. However this conversation led me to a more general principle: Some would always see QA as an embarrassing thing to need, meaning some teams would proudly proclaim that they no longer needed people dedicated to testing.

In the decade since this conversation, it’s become clear that no language or framework is free from the need for testing. That work can be highly distributed, with every single engineer doing their best to write tests, run them and interpret the results. Alternately, the work can be centralized, with a selected few running a compendious set of tests on every release.

There Was Never a Time When Developers Didn’t Run Tests

“Back in the day, QA was responsible for running all the tests and developers just wrote code.” This was never true. Since the era of groundbreaking figures like Grace Hopper, developers have always been able to run the code they were writing, and no one has handed off truly untested code to QA. We all have added debug statements, checked console log outputs and clicked around an interface running on localhost. If we’re shifting testing left now, that doesn’t mean that developers will be running tests for the first time.

Rather, shifting left means giving developers access to a complete set of highly accurate tests, and instead of just guessing from their understanding of API contracts and a few unit tests that their code is working, we want developers to be truly confident that they are handing off working code before deploying it to production.

QA Shouldn’t Be Testing Code That Devs Haven’t Tested

It’s a simple, self-evident principle that when QA finds a problem, that should be a surprise to the developers. If devs are sending off code for testing and they have no idea whether it works, there will be a number of simple, easily detected bugs that could have been solved in a day that now will pend an extra week waiting on the outer loop feedback cycle.

All this may sound self-evident, but when it comes to integration testing — seeing how your code really works in relation to the other services and dependencies in your stack — many organizations still rely on a separate team to run tests at this level. Without access to full and accurate integration tests, when a developer submits a pull request, they are creating a situation where many surprises lurk ahead.

It’s No Longer Separate: Embedded QA Within Teams

Rather than a separate QA team that oversees code just before release to production, an approach that may work well in a microservice environment is embedding QA professionals and/or SDETs within teams.

QA professionals who are embedded within teams should not merely execute tests; their responsibilities extend to writing comprehensive test suites and identifying regressions across the service. This proactive approach ensures that quality is maintained throughout the codebase. An engineer shouldn’t be the one to test code they are too close to; it’s more effective when a dedicated QA evaluates it objectively.

One key value QA brings is assessing the testability of a codebase. By focusing on encapsulating business logic, QA professionals facilitate easier testing and contribute to a more robust architecture. For example, this approach allows for swapping out database services as needed for financial optimization, beyond just improving testability.

In a microservices-based environment where teams own individual microservices, QA professionals play a critical role in overseeing the interactions between these services. Individual teams often concentrate on their specific microservices, potentially overlooking the broader system interactions where issues frequently arise. By acting as a separate entity, QA can holistically evaluate the architecture, ensuring comprehensive test coverage and assisting teams in bootstrapping their testing efforts.

What QA Does Now

The change, then — as QA embeds itself within teams and more developers know how to run high-quality tests — is that QA ends up doing more, not less. The work that QA does becomes more strategic, and has a greater effect on overall developer velocity. Things like:

  • Coming up with the testing strategy
  • Building testing frameworks
  • Choosing the right testing tools
  • Focusing on more complex end-to-end automation
  • Shifting left and embedding themselves within product teams to enable earlier testing

As the need for development velocity and reliable deployments grows, QA will become more valuable than ever.

Join the Signadot Slack

At Signadot, we’re trying to make testing easier for every part of your software development life cycle. If you’re interested in hearing more, join us on Slack to meet our community.

Signadot is a Kubernetes-native platform that empowers AI coding agents to verify code at scale. Combining fast, scalable ephemeral environments with a validation framework built for complex distributed systems, Signadot ensures high-velocity code generation results in safely merged pull requests.
Learn More
The latest from Signadot
Hear more from our sponsor
TRENDING STORIES
Nočnica Mellifera (She/Her) was a developer for seven years before moving into developer relations. She specializes in containerized workloads, serverless, and public cloud engineering. Nočnica has long been an advocate for open standards, and has given talks and workshops on...
Read more from Nočnica Mellifera
Signadot sponsored this post.
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
👁 Image
Enable cloud-native agentic workflows at scale and validate code as fast as agents can generate it.