hbenl / vscode-jasmine-test-adapter

Jasmine Test Adapter for the VS Code Test Explorer
MIT License
20 stars 20 forks source link

Jasmine-node support #24

Closed GregorBiswanger closed 5 years ago

GregorBiswanger commented 5 years ago

Hi,

I need support for jasmine-node please. Try as example: git clone https://github.com/GregorBiswanger/KataDictionaryReplacer.git

Best, Gregor

hbenl commented 5 years ago

Are you sure you need jasmine-node? From their project page:

This project is now in maintenance mode. It is recommended to use the jasmine or jasmine-npm package whenever possible.

I was able to run the tests in your repository using jasmine by adding spec/support/jasmine.json:

{
  "spec_dir": "spec",
  "spec_files": [
    "**/*[sS]pec.js"
  ]
}
GregorBiswanger commented 5 years ago

Oh! Thanks for your information.. 👍 that was not on my radar :)