admin管理员组文章数量:1344537
I install Webstorm 11 and want to run my tests (for node.js app) implemented with Jasmine. However it's not easy to do that. I could just type in mand line 'jasmine' mand and test will be runned, but in this case I'm not able to debug code. So is there a way to configure Webstorm to deal with jasmine specs as it should?
I install Webstorm 11 and want to run my tests (for node.js app) implemented with Jasmine. However it's not easy to do that. I could just type in mand line 'jasmine' mand and test will be runned, but in this case I'm not able to debug code. So is there a way to configure Webstorm to deal with jasmine specs as it should?
Share Improve this question edited Nov 9, 2015 at 9:01 Ph0en1x asked Nov 8, 2015 at 18:12 Ph0en1xPh0en1x 10.1k8 gold badges55 silver badges97 bronze badges 1- Why not jetbrains./webstorm/help/… – timothyclifford Commented Nov 9, 2015 at 9:06
3 Answers
Reset to default 11Ok, so while no one answer at the moment I will try to provide my version: This flow will allow to run jasmine testsute from Webstrom and debug testcases
- install jasmine (ither locally or globally)
in project folder create folder 'spec/support' In this folder place jasmine.json
tests configuration example:
{ "spec_dir": "tests", "spec_files": [ "**/*[sS]pec.js" ], "helpers": [ "helpers/**/*.js" ] }
Create node.js configuration in Webstorm
In this configuration select source file - jasmine executable file (for localy installed jasmine it will be
'node_modules\jasmine\bin\jasmine.js'
)
So you are ready. However at the current moment when trying to debug this configuration - it fails with error:
Cannot stop on breakpoint due to internal error org.jetbrains.v8.V8CommandProcessor$1:
If you faced with it - you need to change Webstom configuration and set this settings:
-Dnodejs.debugger.use.jb.support=false
For more details check there:
So this allow you to run jasmine tests and debug them. However there is still some things which this solution not able to do:
- Run individual testcases
- Run individual testcases with right click button and Run mand from menu
Jetbrains, if you reading this - please fix this already. I started play with node in Webstorm 3 years ago and since that moment and dozens of version there is still no nice way to run tests. It's ridiculous.
Jasmine works with the JSTestDriver which you get out-of-the-box with WebStorm 11: https://www.jetbrains./webstorm/help/enabling-javascript-unit-testing-support.html
This page also details how to add Jasmine within JSTestDriver: https://www.jetbrains./webstorm/help/preparing-to-use-jstestdriver-test-runner.html
At a high level you're going to:
- Install JSTestDriver from JetBrains plugin repo
- Configure it as a WebStorm JavaScript library (https://www.jetbrains./webstorm/help/configuring-javascript-libraries.html#configure)
- Open jsTestDriver.conf and type the following code in it:
load:
lib/jasmine/jasmine.js
lib/jasmine-jstd-adapter/JasmineAdapter.js
WebStorm doesn't manage test running directly. This job is done by a test runner. WebStorm supports several test runners - Mocha, Karma, JsTestDriver, nodeunit. Most of them can execute Jasmine tests
本文标签: javascriptRundebug nodejs testcases with jasmine in Webstorm 11Stack Overflow
版权声明:本文标题:javascript - Rundebug node.js testcases with jasmine in Webstorm 11 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742997a2531240.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论