Is there any way to integrate Specflow with Jasmine?

I recently looked at the Jasmine framework, and I need to know if there is any way to use the Specflow language to describe the behavior and Jasmine as a TestRunner

+4
source share
1 answer

Specflow is a cucumber for .net, so it will not be able to run javascript tests using jasmine.

However, there are several cucumber frameworks for javascript ( see this and the answers to this question , which also shows how jasmine expects the tests to be written in the BDD style.), Which will give you the syntax in the language used in SpecFlow for your javascript tests.

+3

All Articles