Here is a possible solution:

Create a setting pointing to your config file (e.g. in .vscode/settings.json):

{
  "jasmineExplorer.config": "jasmine.json",
  ...
}

In the jasmine.json file, you tell the explorer where the specifications are. Here is an example:

{
    "spec_dir": "site/dist/tests",
    "spec_files": ["**/*[sS]pec.js"],
    "helpers": ["helpers/**/*.js"],
    "random": false,
    "seed": null,
    "stopSpecOnExpectationFailure": false
}
Answer from Willem on Stack Overflow
🌐
Visual Studio Marketplace
marketplace.visualstudio.com › items
Jasmine Test Explorer - Visual Studio Marketplace
Extension for Visual Studio Code - Run your Jasmine tests in the Sidebar of Visual Studio Code
🌐
GitHub
github.com › hbenl › vscode-jasmine-test-adapter
GitHub - hbenl/vscode-jasmine-test-adapter: Jasmine Test Adapter for the VS Code Test Explorer · GitHub
Run your Jasmine tests in Node using the Test Explorer UI.
Starred by 21 users
Forked by 20 users
Languages   TypeScript
🌐
GitHub
github.com › hbenl › vscode-jasmine-test-adapter › issues › 12
Test Explorer window not showing Jasmine tests · Issue #12 · hbenl/vscode-jasmine-test-adapter
July 5, 2018 - I installed jasmine using npm. The Test Explorer window does not find any tests. Neither does the code lens Run/Debug functionality appear in any of the spec files. When I open the SpecRunner.html file that is part of the project, the test output is generated without any problems.
Author   MrClyfar
🌐
Mortenhoustonludvigsen
mortenhoustonludvigsen.github.io › KarmaTestAdapter
Karma Test Adapter – A Visual Studio test explorer adapter for Karma
This extension integrates Karma - Spectacular Test Runner for JavaScript with the test explorer in Visual Studio 2013 and Visual Studio 2015 Preview / CTP. This extension is built using JsTestAdapter. This test adapter runs tests in browsers using Karma. If you need to run tests in Node.js you might be interested in the Jasmine Node Test Adapter.
🌐
Mortenhoustonludvigsen
mortenhoustonludvigsen.github.io › JsTestAdapter › CreatingATestAdapter
Creating a Visual Studio Test Explorer adapter with JS Test Adapter – JS Test Adapter – A base library to create Visual Studio test explorer adapters for javascript
Create a new "HTML Application with TypeScript" in Visual Studio 2013 called "JasmineNodeJsTestAdapter" (make sure to check Create directory for solution). Once this is done, the solution explorer should look something like this:
🌐
Jasmine
jasmine.github.io
Jasmine Documentation
Jasmine is a framework for testing JavaScript code. It does not depend on any other JavaScript frameworks. It runs in browsers and in Node.js.
Find elsewhere
🌐
Ceymplon Ltd
ceymplon.lk › blog › 65 › testing-javascript-using-jasmine-test-framework-and-chutzpah-test-explorer
Testing JavaScript Using Jasmine Test Framework and Chutzpah test Explorer
This plugin also provides additional functionality such as code coverage results and debugging which can be done directly from Visual Studio. Jasmine is a behavior-driven development framework for testing JavaScript code.
🌐
Visual Studio Marketplace
marketplace.visualstudio.com › items
Karma Test Explorer (for Angular, Jasmine, and Mocha) - Visual Studio Marketplace
Visual Studio Code>Testing>Karma Test Explorer (for Angular, Jasmine, and Mocha)New to Visual Studio Code?
🌐
GitHub
github.com › jasmine › jasmine
GitHub - jasmine/jasmine: Simple JavaScript testing framework for browsers and node.js · GitHub
Simple JavaScript testing framework for browsers and node.js - jasmine/jasmine
Starred by 15.8K users
Forked by 2.2K users
Languages   JavaScript 98.1% | CSS 1.2%
🌐
Testim
testim.io › blog › how-to-start-javascript-unit-testing-in-visual-studio
How to Start JavaScript Unit Testing in Visual Studio
March 30, 2025 - This test is usually the first test one writes when solving the famous String Calculator Kata, developed by Roy Osherov. After saving the file, you can go to the “Test” menu and then to “Test Explorer.” This will open the Test Explorer ...
🌐
Testim
testim.io › blog › jasmine-js-a-from-scratch-tutorial-to-start-testing
Jasmine unit testing JS: A guide to start testing from-scratch
June 16, 2025 - Now you know how to set up Jasmine, the components of a Jasmine test suite, and the basic syntax to write unit tests for your JavaScript project. Before you know it, with a little practice, writing tests will feel like second nature. In the meantime, don’t forget to explore other kinds of tests too!
🌐
JetBrains
jetbrains.com › help › resharper › ReSharper_by_Language__JavaScript__Unit_Testing.html
Unit Testing Assistance in JavaScript | ReSharper Documentation
October 1, 2024 - ReSharper helps you discover and run unit tests of QUnit and Jasmine frameworks right in Visual Studio.
🌐
Angular
angular.dev › guide › testing › karma
Testing with Karma and Jasmine • Angular
The test output is displayed in the browser using Karma Jasmine HTML Reporter.
🌐
Apriorit
apriorit.com › home › blog › software development blog › testing javascript with jasmine
Testing JavaScript with Jasmine | Apriorit
October 3, 2025 - Also there is possibility to run Jasmine test as a common unit test in Visual Studio. Go to “Tools -> Extentions and Updates”, click “Online” and search for “Chutzpah”. Install “Chutzpah Test Adapter for the Test Explorer”.