Nowadays, web applications consist of a variety of different technology stacks. Developers utilize languages like Ruby, Python, PHP, JavaScript, and C for the backend, as well as frameworks such as AngularJS and EmberJS for MVC/client-side code. To ensure quality, developers write tests specific to each part of the stack, whether it's RSpec for Rails, QUnit for JavaScript, or Selenium for headless browser testing.
My query is simple: Is there a single framework available that can consolidate the results from these diverse tests into one comprehensive spreadsheet or graph? I'm interested in obtaining an overview of the application's health without having to delve into each individual stack separately. How is this achieved nowadays? Are there any modern tools designed to collect results from RSpec tests, QUnit tests, and Selenium tests, then present them in a visually appealing format?
Ideally, I have envisioned a test framework that requires just one 'GO' button to run tests across all my stacks and produce unified output that can be showcased in HTML, CSV, or any other required format.