Tagged Questions
1
vote
1answer
27 views
Jasmine .andCallFake not triggering for function call with spineJs
I am using jasmine to test my front end, and have a spy set up to watch for the edit function to be called within a controller. The callback takes a message and either brings up the edit view or ...
0
votes
1answer
72 views
Jasmine and Jquery, loading a JSON file
I have the following method to load a JSON file using coffeescript/jquery:
Class JsonParser
this.return = (json_file_path, string_to_query) ->
$.getJSON json_file_path, (data) ->
$.each ...
0
votes
1answer
136 views
ReferenceError: Can't find variable: $ when running JasmineHeadlessWebkit
I've been trying to find an answer to this at least for the last two hours without any luck. I hope someone here might be able to help.
I'm getting this ReferenceError: Can't find variable: $ when ...
0
votes
1answer
36 views
Jasminerice with knockout
I can use Jasminerice (https://github.com/bradphelan/jasminerice) to test a class like:
class @Survey
constructor: (id) ->
@id = id
With the test:
#= require survey
describe "Survey", ...
0
votes
1answer
77 views
why does jasmine-node throw this error when trying to require a spec file with coffee v1.6.2?
This worked fine with coffee v1.4 and v1.5 but the latest version now makes jasmine node throw a weird error when I run:
jasmine-node --coffee --forceexit spec/
...
1
vote
0answers
145 views
Testing Marionette Modules in isolation with Jasmine
I have a Marionette project, similar to setup described in http://www.backbonerails.com/
I am using Rails, Coffeescript and Jasmine/Sinon for specs.
I'm having problems testing modules in isolation. ...
2
votes
2answers
46 views
Jasmine to test whether a object has a certain method or not
I am using Jasmine, and I want to test whether a object has a certain method or not, like below:
it "should have 'open' method", ->
@xhr = ajax.create()
expect(@xhr).toHaveMethod "open" # ...
1
vote
1answer
94 views
Testing form action on submit with sinon and jasmine
I try to verify that a proper form action is performed when the submit button is clicked. I run the tests with Karma (formerly testacular) in Chrome and i use sinon to create a fake server to capture ...
0
votes
1answer
157 views
Sinon.js fakeServer.request.respond fails when $.getJSON with jsonp used
Hello I am newbie of sinon.js. I am writing Jasmine BDD test code. I want to make a little application which get photos from flickr.
describe "with stub", ->
beforeEach ->
@server = ...
0
votes
1answer
71 views
With Jasmine-jQuery I tried to change fixture HTML but it doesn't work
I am newbie of Jasmine-jQuery. I tried to use fixture HTML but test doesn't pass.
fixture.html:
<html>
<body>
<p id="0">
</p>
</body>
</html>
...
2
votes
1answer
74 views
coffeescript and jquery producing complete url for background image?
I am trying to set the background image of a div using coffeescript and jquery. I get the image url from a data source in the DOM in the form /images/album_image1.jpg.
However, when I use:
...
1
vote
2answers
172 views
With Jasmine-jQuery I tried to use fixture HTML but test doesn't pass
I am newbie of Jasmine-jQuery. I tried to use fixture HTML but test doesn't pass.
fixture.html:
<html>
<body>
<p id="0">
</p>
</body>
</html>
...
1
vote
1answer
222 views
ngMock fails to recognize request
I've got the following specs wrapped around a controller. I've got the following Jasmine Spec:
describe 'MyApp.Controller.SomeController', ->
beforeEach module('mymodule')
beforeEach inject ...
6
votes
3answers
114 views
Jasmine shared specs scoping issues with coffeescript
I'm attempting to DRY up some jasmine tests by extracting out shared examples.
@sharedExamplesForThing = (thing) ->
beforeEach ->
@thingy = new thing
it "is neat", ->
...
0
votes
1answer
54 views
Why am I unable to spyOn this “global” function?
First time trying to use Jasmine spies so I hope I'm just missing something obvious. What I want to do is track calls to a function that I have defined as:
window.myFunction = ->
I have a class ...
0
votes
1answer
73 views
coffeescript autogenerated namespace causes reference error jasmine test
I try to write some simple tests in Coffeescript and Jasmine.
# greet.coffee
greet = (message, person) ->
"#{message}, #{person}!"
and here my Jasmine Spec File:
# greetSpec.coffee
...
0
votes
1answer
49 views
Strange behavior of Jasmine test with CoffeeScript codes
I am writing Jasmine test but it shows strange behavior.
This is my code:
root = exports ? this
class root.SomeClass
constructor: ->
@index = 0
incrementIndex: -> @index++
...
0
votes
1answer
123 views
Running subclasses through a battery of jasmine tests
So I'm building an angular project... And I have a class called "entries" with child classes like "twitter entries", "Facebook entries", etc.
Ideally I'd like to write one spec, and run all of the ...
4
votes
2answers
130 views
Jasmine testing coffeescript expect(setTimeout).toHaveBeenCalledWith
In the process of learning Jasmine, I've come to this issue. I want a basic function to run, then set a timeout to call itself again... simple stuff.
class @LoopObj
constructor: ->
loop: ...
3
votes
2answers
233 views
How to load Rails view for testing in Jasmine?
The following code works in a browser, but how to test it with Jasmine? Upon clicking #opener, it should display a jQuery dialog box and make an ajax call to load the content:
$ ->
$( "#dialog" ...
0
votes
1answer
50 views
class initialization always fails
I am newbie of JavaScript and studying with CoffeeScript. I want to make a class which communicate to Flickr Web API with Ajax when initialized.
class Photo
json: null
constructor: ->
...
3
votes
1answer
594 views
How to test a Controller which relies on an ngResource Service
I have a controller which relies on a service built through ngResource. I am having trouble testing this(although both appear to work like a charm in the actual application). The following is the ...
2
votes
2answers
249 views
Testing Backbone Model validation using backbone.validation - spies never get called
I'm using backbone.validation in order to validate my backbone Models and am employing a TDD approach to my work. Unfortunately I cannot seem to get my spy to be called when testing that fields are ...
0
votes
1answer
68 views
how to dry up these tests with jasmine.js
I have a lot of tests like the following :
it "Should call togglePadding if df-padding is checked", ->
spyOn(App.columnsSetupBuildingBlockController.content, 'togglePadding')
...
0
votes
2answers
134 views
After modifying attributes on a node.js vm context (sandbox), the modifications aren't seen by code in the context
Background
I'm working on tests for the Backbone.dualStorage plugin for Backbone.js that replaces Backbone.sync.
This is a browser plugin, but I'm using jasmine-node to test it. I load the ...
1
vote
1answer
234 views
Jasminerice: spec failing because jQuery is not defined
I just installed the gem Jasminerice in a Ruby-on-rails project. Following the instructions on Jasminerice Github I created a spec, started the rails server, and navigated to the /jasmine route.
...
0
votes
1answer
103 views
How can I write my Jasmine unit tests in CoffeeScript in my Rails 3 project?
Simple, really: I want to write my Jasmine-based JS unit tests in CoffeeScript, but I don’t want to manually compile. Running Jasmine, it doesn’t use the Asset Pipeline for specs.
What’s a good ...
-1
votes
2answers
126 views
Increment code for test should be '++@count'?
I am beginner of CoffeeScript and Jasmine. At first, I tried to pass test with below code:
class Counter
count: 0
constructor: ->
@count = 0
increment: ->
@count++
...
1
vote
1answer
112 views
My very simple Jasmine test fails with message 'Expected 0 to be 1.'
I am beginner of CoffeeScript and Jasmine. I tried to test a simple class as below:
class Counter
count: 0
constructor: ->
@count = 0
increment: ->
@count++
...
0
votes
1answer
77 views
Simple Class test does not pass
I am newbie of JavaScript. I am learning about Class with testing by Jasmine. I tried to clear the test, but despite of my efforts, Jasmine does not show green.
My code is below:
// Generated by ...
0
votes
1answer
202 views
Jasmine with Jasminerice: Outputting Errors to Console
I'm testing my Backbone.js (on Rails 3.2) app using Jasmine and Jasminerice. Works wonderfully, however any JS errors are trapped in Jasmine and displayed in HTML. This is a bit inconvenient as I ...
0
votes
1answer
95 views
How can I get Jasmine in CoffeeScript to test for exceptions?
I have this code:
class root.Goal
constructor: (@name, @size) ->
if @size <= 0 then throw new Error "Goal must be larger than 0 size"
Tested by this Jasmine-CoffeeScript test:
...
1
vote
1answer
504 views
object is not defined error when running Jasmine tests on CoffeeScript files
I've been learning coffeescript, and as an exercise in learning it I've decided to TDD Conway's Game of Life. The first test I've chosen is to create a Cell and see if it's dead or alive. To that ...
0
votes
1answer
265 views
Jasmine Spy Undefined
When I run my jasmine specs I get the following error:
Error: Expected a spy, but got undefined.
My coffeescript code:
describe "setupForm", ->
beforeEach ->
...
0
votes
1answer
695 views
Testing event handlers in objects with jasmine
I am using a simple MVC pattern in my CoffeeScript ala Spinejs. It allows me to add event listeners by specifying an events object before instantiation:
class Controller extends Module
@include ...
4
votes
2answers
480 views
Spying on Backbone.js route calls with Jasmine
Having problems spying method calls on a Backbone Router to ensure it calles the right method on a given route.
excerpt from the test
describe 'Router', ->
beforeEach ->
@router = ...
1
vote
1answer
188 views
$.when with array of jQuery deferreds sometimes calls .always multiple times
My production code has this chunk of logic, compiled from CoffeeScript:
results = [];
results.push(slowOpA());
results.push(slowOpB());
results.push(slowOpC());
results = _.flatten(results);
...
2
votes
1answer
450 views
Preventing AJAX call with Jasmine and Sinon using Backbone
I'm just getting started testing my Backbone app with Sinon and Jasmine. I have a view that look something like (coffeescript):
initialize: ->
@collection.on 'reset', @render, this
...
1
vote
1answer
1k views
How to configure RequireJS (require.config()) with jasmine-node?
I have an init file that provides a function that bootstraps RequireJS via require.config(). The configuration ends up looking something (mostly) like this:
...
config =
baseUrl: sysDir + 'lib/'
...
0
votes
1answer
476 views
Jasmine calling beforeEach after tests
I'm writing a Rails app which has the following jasmine spec:
describe "buttons", ->
beforeEach ->
loadFixtures("foo.html")
alert("beforeEach: " + $("tr.foo").length)
describe ...
0
votes
1answer
222 views
Jasmine spyOn working where sinon does not?
Just working on some js testing, and I've been trying to use sinon. I have the following test where I want to stub the draw and draw_association functions. The spyOn from jasmine seems to work, but ...
0
votes
2answers
452 views
Parameters for render method in Backbone View
I'm using this coffeescript code:
in a spec file:
index = new MeetingIndex(render: false, collection: booking.meetings)
index.render(writeTo: '.sandbox')
in the view file:
render: (options = {}) ...
1
vote
1answer
295 views
jasmine.Clock VS sinon.clock what's wrong with my jasmin.Clock.useMock() usage?
I'm just giving a try to unit testing in javascript/coffeescript with jasmine, very nice.
I've been trying to use jasmine.Clock.Mock() to advance in time and fire setTimeout callbacks.
Alas the ...
0
votes
1answer
251 views
jasmine + coffeescript - jasmine skipping tests
Jasmine is skipping all my 'it' tests except the last one in a describe block - I'm using coffeescript in my tests and I believe this may be the reason. When i look at the compiled JS created by my ...
1
vote
2answers
534 views
How to test which class my Backbone collection extends in Jasmine
I got a custom Backbone.Collection class in Coffeescript.
I named it (it is responsible for pagination):
class SI.PaginatedCollection extends Backbone.Collection
I want to write Jasmine spec which ...
2
votes
1answer
435 views
Jasmine fixtures and jQuery .on()
I've a problem with my jasmine suite and my usage of jQuery's new event registration method .on().
Here's a simplified version of my fixuture:
<div id='rent_payment_schedule_container'>
...
0
votes
1answer
288 views
How to test that a Backbone view event adds an item to a collection?
I am trying to spec the click event handler on the following Backbone view:
class ItemView extends Backbone.View
events:
"click": "addToCurrentlyFocusedList"
addToCurrentlyFocusedList: (e) ...
1
vote
1answer
547 views
Backbone + Jasmine testing AJAX success callback in router
Say I have the following Backbone Router:
class App.Routers.ThingsRouter extends Backbone.Router
initialize: -> new App.Collections.ThingsCollection()
index: ->
that = this
...
0
votes
1answer
247 views
Jasmine spies on nonexistent objects
I have a backbone router that has the following action:
index: ->
@collection = new App.Collections.ThingsCollection()
@collection.fetch success: ->
# ...
And I am trying to test this ...
0
votes
1answer
555 views
Testing jquery change for simple checkbox function
First, I just wanted to say that the below code is working in reality. It is only failing in the jasmine spec. The function is very simple. When the check box with id "check_all" is selected, ...