Cucumber js in visual studio 2013

Is there a project with similar goals, for example Specflow - a cucumber in Visual Studio, but for cucumberjs ?

I am considering unit testing / bdd framework for Visual Studio. Cucumberjs seems like an obvious choice as I use Specflow to test C #. However, cucumberjs requires the installation of nodejs.

Chutzpah launches things like jasmine , qunit , etc. in Visual Studio. Is there a way to do the same for cucumbers? Perhaps nodejstools for visualstudio with a mixture of something else?

There is a feature request: cucumber-js support for Chutzpah, but it works.

(Chutzpah was ported to github, so the problem was lost)

New Chutzpah function request on github to support cucumber-js

There is an interview with a key member of the cucumber , saying (below), which sounds promising:

"Cucumber.js support is being added to popular IDEs such as Jetbrains Webstorm 8 and Visual Studio."

+6
source share
2 answers

I did this using Visual Studio Task Launcher . (You must add it if you are using VS 2013, with it already included in 2015.)

This extension is a runner for Grunt and Gulp tasks directly in Visual Studio 2013. Now you can define a Grunt task, for example this one , which runs your cucumberjs functions.

+1
source

As David Leitner answered, I created a walkthrough on how to configure cucumberjs in Visual Studio.

http://blogs.endjin.com/2015/10/step-by-step-guide-to-setting-up-cucumberjs-in-visual-studio-2015/

+4
source

All Articles