Jasmine is a behavior-driven development framework for testing your JavaScript code.

learn more… | top users | synonyms

0
votes
0answers
6 views

testing Backbone Collection Firebase property

Following is Backbone Collection with Firebase binding for Backbone. define([ 'underscore', 'firebase.backbone', 'firebase', 'models.event' ], ...
0
votes
1answer
20 views

Jasmine unit tests: $compile produces comment out of ng-repeat

Why the line var scope = $rootScope.$new(); dump($compile('<ul><li ng-repeat="item in [1,3,5,7,9]">{{item}}</li></ul>')(scope)); results in: '<ul ...
0
votes
0answers
28 views

Angular resource testing: $httpBackend.fulsh() cause Unexpected request

I want to test angularjs resource. 'use strict'; /** * AddressService provides functionality to use address resource in easy way. * * This is an example usage of method: * * `get`: * var ...
0
votes
0answers
16 views

How do I unit test for form is/is not valid in Jasmine for AngularJS?

Given and AngularJS app with: A form named 'LoginForm' <div class="well well-large loginForm" ng-controller="LoginController" ng-hide="isAuthenticated"> <form id="loginForm" ...
0
votes
0answers
19 views

Generate jasmine report using Karma Runner

I want to obtain a report of all successful jasmine specs runned with karma, something like you obtain when using jasmine alone. Is there anyway to achieve this?
0
votes
0answers
30 views

Testing a AngularJS directive that uses Popcorn.js

I'm working on a new project that uses AngularJS, one of the goals that we have for this project is that it's build using TDD. I'm having some issues testing a directive that uses Popcorn.js to embed ...
0
votes
1answer
23 views

How to unit test Angular controller with $scope.$on?

I have a controller with an event listener in my Angular app, defined as follows. angular.module('test').controller('TestCtrl', function($rootScope, $scope, testService) { [...] ...
0
votes
0answers
89 views

Testing AngularJS with Jasmine via Karma

I'm testing my AngularJS app with Jasmine at the moment, and it's passing specs. I tried to run the tests with Karma, and it's failing. It appears that Karma can't see the $scope being defined in the ...
0
votes
0answers
16 views

Testing services w/ $httpBackend in AngularJS

I have a service with about a dozen methods hanging off it. I'm setting up my first round of unit tests. Here's a simple example that's working: it('should have a working getter/setter for ...
0
votes
0answers
10 views

Run multiple specs using jasmine and jstestdriver

I have written multiple spec files for unit testing various modules on the webpage. If i run them individually, one at a time they work fine. But when i try to run all the files in a sequence, only ...
0
votes
0answers
19 views

Calling $digest subsequent times in a directive yields inconsistent results

Here's a toy directive: angular. module('myModule', []). directive('myDirective', ['$compile', function ($compile) { return { restrict: 'E', link: function ...
0
votes
1answer
137 views

Testing modular AngularJS w/ Jasmine & Karma

Struggling to get unit testing set up in Jasmine/Karma. I have a controller with a service dependency, and that service has another service dependency. I am not organizing my modules by type ...
3
votes
1answer
91 views

Taking a dump in JavaScript (AngularJS, Karma & Jasmine?)

So normally when I need to take a dump in JavaScript, I simply log it to the console via console.log("What I ate yesterday"); Today, I was watching a video on Karma/Jasmine unit testing for ...
1
vote
1answer
153 views

Angular.js code coverage using Karma w. Coffeescript

I had some difficulties running Istanbul code coverage tool with Angular.js + Jasmine. I'm coding in Coffeescript, but since Instanbul doesn't support it yet, source is converted to JS on every save. ...
1
vote
2answers
103 views

Trigger d3 event within Jasmine spec test

I am attempting to trigger a d3 event using Jasmine. In particular, I want to check that my event listener is being called using a Jasmine spy. For example, if I attach the d3 zoom behavior to an ...
2
votes
2answers
21 views

How to assert for an exception using Jasmine?

I am trying to write a test for ensuring that an invalid instantiation I am doing produces an exception. The test is as follows: describe('Dialog Spec', function () { "use strict"; it("should throw ...
1
vote
1answer
31 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 ...
1
vote
1answer
95 views

AngularJS - unit testing a factory that has dependencies

When unit testing an Angular factory (with Karma + Jasmine), how do I inject a stub dependency into the factory under test? Here's my factory: mod = angular.module('myFactoryMod', []); ...
1
vote
0answers
82 views

AngularJS + Karma: reuse a mock service when unit testing directives or controllers

I'm working with AngularJS + Karma. configService manages the settings of my app (e.g. the background-color, wether it's on debug mode, general permissions...). It loads initial data with $http. I ...
0
votes
1answer
16 views

Testing an AJAX API that uses session authentication with Jasmine?

I have a restful API provided by Django and Tastypie protected with SessionAuthentication and DjangoAuthorization. How can I get Jasmine to authenticate or step through the login page before each API ...
0
votes
1answer
31 views

How to unit test express route that calls helper function from dependency?

I have the following as part of my login code. I already have unit tests written for the authentication.login() so its just the response handling itself I need to test. app.post('/login', ...
4
votes
1answer
55 views

Testing requireJS methods async with Jasmine

I am trying to test a function that requires a module using jasmine and requirejs. Here is a dummy code: define("testModule", function() { return 123; }); var test = function() { ...
2
votes
0answers
70 views

Angular js testing with Grunt

I am having problem with running test in my angularjs project -When I run "grunt test" I get ReferenceError: io is not defined I am running server localy throug port 3000 wich is a node.js socket.io ...
0
votes
1answer
19 views

How to test AngularJS Directive with scrolling

I have an infinite scroll directive that I am trying to unit test. Currently I have this: describe('Infinite Scroll', function(){ var $compile, $scope; beforeEach(module('nag.infiniteScroll')); ...
1
vote
0answers
40 views

Mocking AngularJS XHR requests for testing using Jasmine

Ok, I am pretty sure this is really weird behaviour - and I have no idea what is going on... Code below. I am running a Jasmine spec on possibly the most simple AngularJS controller ever, which ...
0
votes
0answers
35 views

Jasmine async call trouble

I am just getting started with jasmine unit testing and am running into some trouble with testing my async calls. I have a ajax call that I am trying to test, and I tried it in the console so I know ...
1
vote
1answer
61 views

Jasmine in a separate test project

Is it practical/possible to separate jasmine tests into a separate visual studio project? I am just getting started with angular, and am trying to write my tests before I start on the actual ...
0
votes
0answers
46 views

AngularJS jasmine maven plugin preload sources paths issue

I'm wondering why some paths to javascript libs are working in the preload sources section and some aren't. E.g. <preloadSources> ...
0
votes
1answer
18 views

how to run JSCover on windows

I've spent quite some time to try using the JSCover that allows you to monitor code coverage of your javascript code. As compelling as it may sound, it does not seem to be a straight forward deal. ...
-1
votes
1answer
18 views

Javascript Library to Test API Endpoints

I am looking for a simple API for testing rest API. I would like to be able to keep the mocha and/or jasmine asserts structure, while chaining the API data, verb etc. api( '/maker' ) .put( ...
0
votes
0answers
29 views

test angularjs with jasmine in rails

I'm trying to do unit tests for my AngularJS app, but jasmine just do not see the controller, though it's registered in global namespace: ReferenceError: RequestsController is not defined. Gem is ...
2
votes
1answer
39 views

Issues with Jasmine's spyOn toHaveBeenCalled on a prototypal method

My example of spying on a method is failing with "Expected spy handle_click to have been called." when it should pass. However, I am getting the console log "Foo handle_click called!", so I know it's ...
1
vote
0answers
24 views

Angular test reporting options?

I find the Angular console test reporting awkward to read, it just a big pile of console text with next to no formatting. Is it possible to get the Angular unit testing reporting to appear in the ...
0
votes
1answer
44 views

How do I get a resource from an Angular.js module for a jasmine test

I have a module that contains resources for a project, and the code looks like this: editor_services.js var editorServices = angular.module('editorServices', ['ngResource']); ...
0
votes
0answers
14 views

How can I use jasmine-headless-webkit with Django?

I've checked out django-jasmine, and although it does most of what I need, it's missing a couple of features that jasmine-headless-webkit provides: automatic coffeescript compilation, and clean ...
0
votes
1answer
29 views

Why isn't $digest updating my scope in my unit test

I have the following code. For some reason test 1 is failing. Can anyone tell me why? angular. module('myModule', []). directive('myDirective', function () { return { ...
0
votes
1answer
30 views

jasmine test continuing to act althought WaitsFor is true

I'm working with backbone and jasmine and now trying to test the callCount of 'sync' method, when model saved. For some strange reason the sync handler continue to handle the sync even after the done ...
1
vote
1answer
177 views

Javascript.confirm() and Angularjs Karma e2e test

I have an Angularjs application that uses simple javascript confirm before executing some actions. Controller: function TokenController($scope) { $scope.token = 'sampleToken'; $scope.newToken ...
2
votes
0answers
27 views

Clear console for each run of Testacular/Karma + Jasmine

It is difficult for me to catch with the eye a boundary between test runs. Is it possible to clear console for each run of Testacular/Karma + Jasmine or at least put there something easily catched by ...
0
votes
2answers
32 views

Jasmine: one matcher per “it” or multiple?

Is it right to have multiple matchers per one "it" in Jasmine tests or they will interfere with each other? I want to consolidate these tests into one: var mapper = ......... ; it('should be ...
3
votes
1answer
82 views

Getting requirejs to work with Jasmine

I first want to say that I am new to RequireJS and even newer to Jasmine. I am having some issues with the SpecRunner and require JS. I have been following the tutorials of Uzi Kilon and Ben Nadel ...
1
vote
1answer
36 views

How to include HBS template in Jasmine?

I am building a client-side web application in javascript. To build the templates I have used HandleBars.js templates, i.e. .hbs files. I am using Jasmine framework for writing the specs for the ...
0
votes
1answer
111 views

Making Karma a.k.a Testacular work [closed]

I wanna use Karma (previously known as Testacular) to run some jasmine tests. So I've installed node.js, then I run: npm -g install karma I even installed jasmine npm -g jasmine-node then I used ...
1
vote
2answers
47 views

Checking object equality in Jasmine

Jasmine has built-in matchers toBe and toEqual. If I have an object like this function Money(amount, currency){ this.amount = amount; this.currency = currency; this.sum = function (money){ ...
1
vote
2answers
71 views

What do jasmine runs and waitsFor actually do?

I use jasmine runs and wait to test asynchronous operations. Everything works fine but I'm not quite sure what goes on behind the scenes. The jasmine documentation states the following example to ...
2
votes
3answers
57 views

how to unit test the backbone sucess and error response on save using jasmine

onSaveEvent: function (event) { if (this.model !== null) { var that = this; this.model.save(this.model.toJSON(), { ...
0
votes
0answers
32 views

Not able to access headless browser elements using jasmine/ Phantomjs

We are trying to use combination of jasmine test framework with phantomjs for acceptance testing . I have successfully installed phantomjs and jasmin . When I run normal javascript jasmin uniti ...
3
votes
1answer
62 views

Angular - Jasmine can real XHR be executed?

I do not want to have the $http mocked. Main reason is that I am writing some integration tests so I want to have all AJAX requests executed. Currently in my tests none gets triggered. Any suggestion ...
1
vote
1answer
50 views

Testing CSS Transition finished in Jasmine

I'm trying to test a bit of JavaScript using jasmine & jasmine-jquery So I have this bit of Javascript in function trackTransition = ()-> $("#test").on "transitionend MSTransitionEnd ...
0
votes
0answers
52 views

Jasmine-javascript Testing the new open browser tab

I am really new to Jasmine testing language. I am trying to test some thing like this. (The following code works fine but my situation is a little bit different) describe('Phone list view', ...

1 2 3 4 5 17