Jasmine is a behavior-driven development framework for testing your JavaScript code.
0
votes
1answer
24 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 ...
2
votes
1answer
54 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
0answers
51 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
68 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
16 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
14 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
48 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
43 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
15 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
24 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', ...
3
votes
1answer
37 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
47 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
12 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
26 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
32 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 ...
0
votes
1answer
39 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
24 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
12 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
0answers
13 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
24 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
30 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 ...
0
votes
0answers
21 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
35 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
12 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
21 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
23 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
124 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
20 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
30 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
55 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
32 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
79 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
42 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
51 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
55 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
30 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
60 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
47 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
47 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
vote
0answers
22 views
How to solve cache? issue when using jasmine standalone
When I go to SpecRunner.html in my browser, the unit tests run fine. The issue I am having is if I change one of the tests, or the code that it tests and refresh the page, it doesn't load the new ...
2
votes
1answer
45 views
AngularJS + Jasmine: spy an event callback
I have issues to spyOn a method bind to an event with scope.$on in a factory service, with Jasmine. The real method originally passed is called, instead of the spy.
I've made a plinkr: ...
3
votes
1answer
191 views
Testing breeze application
I am doing an application with durandal, breeze, and knockout. I have started to implement some test. The first problem that I have had is to decide what I should test and what not. I know that I ...
0
votes
2answers
90 views
AngularJS watchers: oldValue equal to newValue in unit test
I met an issue with AngularJS watchers in unit test.
When running the app, it is working as expected but in unit test, oldValue is always equal to newValue which led to failing test when testing ...
1
vote
2answers
114 views
Configuring Grunt, Jasmine and RequireJS all together
I'm a complete noob with Jasmine and RequireJS so any help is appreciated.
We have the following directory structure
/assets
/libs <- populated by Jam
/scripts
/tests
I'm trying to ...
1
vote
1answer
55 views
Jasmine CI and Capturing Test Result Output on Jenkins Server
Background:
Have inherited a Ruby on Rails 3.1.x project which is in need of some BDD and testing for Javascript code. So following the Instructions I have added the jasmine gem for JS testing. This ...
1
vote
0answers
62 views
testing require modules with jasmine in nodejs
I ma trying to load require modules in node to test with jasmine.
Hers my spec runner
var coffee,
isVerbose,
jasmine,
key,
showColors,
sys,
i,
len,
jasmine = ...
0
votes
1answer
25 views
Testing for client validations in Rails views
In the Rails application that I am working on I have a page that should display an error message when a field is not populated and the form is submitted.
The client side validation on the field is ...
0
votes
1answer
75 views
How can I write jasmine test for angular controller and service like this?
I'm stuck for hours for this and it's because I'm new to Jasmine and Angularjs. Basically, I have this controller.
angular.module('toadlane.controllers', []).
controller('MainController', ...
0
votes
1answer
72 views
AngularJS + Jasmine test scripts failing fn is not function
I'm using Yeoman to create an angular project and have modules defined as:
angular.module('angularApp')<br />
.controller('LogOutCtrl', function ($scope) {//do stuff});
Test scripts via ...
2
votes
1answer
56 views
Node.js: How do relative paths in require statements work?
I am using jasmine-node to run jasmine tests. My project has a typical structure with "spec" and "src" folders.
Inside my "HelloSpec.js" file I had:
require('../src/Hello.js');
However when I ...


