When using the Jasmine in Rails project to support dependencies in my Jasmine specifications, I want to pull jquery from cdn, as is done on a real page. I try to do it like this in my Jasmine.yml file:
helpers:
- http:
However, this never works, as when viewing the localhost: 8888 source I get:
<script src="/__spec__/http://code.jquery.com/jquery-1.9.1.js" type="text/javascript"></script>
How are you doing this right?
source
share