Creating a Jasmine Test Runner in JSBin
Just a quick update here.
A typical set up for testing front end code using Jasmine involves creating a test runner page with CSS and JS assets.
To quickly set up a test runner using JSBin, I decided to write the CSS asset into the HTML using JavaScript, for a quick one line script include in the JSBin HTML.
So I created jasmine-css.js and concatenated that with all of the other Jasmine assets to create jasmine-all.js, which can be linked to here: http://jeromecovington.github.io/jasmine-all/jasmine-all.js
I borrowed the idea from: http://sukima.github.com/jasmine-all/jasmine-all-min.js which uses Jasmine 1.3.1.
However, my version uses Jasmine 2.0.0.
Here's an example JSBin.