I'm trying to use Jasmine for unit testing for a small application written in coffeescript. I've found many sources saying that unit testing can be done perfectly well on JS compiled from coffeescript. How do you access the data and logic of the JS code, if everything is wrapped in an anonymous function to avoid polluting the name space? Is the only solution to run the compiler with the -b flag every time?
|
feedback
|
|
You should test against the public interface that you expose from your CoffeeScript module. If your module is called
There are other variations on this pattern, of course. See underscore.coffee, for example. Now that you have your public interface exposed, just make it available to your Jasmine tests in whatever way is appropriate. If you're using jasmine-node, for example, you would do the following:
Your tests would then call | |||
|
feedback
|
|
There are very few cases where it makes sense to use For Jasmine and CoffeeScript, especially in conjunction with jQuery, you should take a look at the InstantJasmineCoffee project and this related blog post. | |||
|
feedback
|
|
I just stumbled upon this, but if you're looking to get started with Jasmine + CoffeeScript on the cheap, you could check out this skeleton Sinatra app that I posted to Github. It uses a rack filter to compile the CoffeeScript dynamically. Example specs & instructions included: https://github.com/searls/jasmine-coffee | |||
|
feedback
|