Mocha is a feature-rich JavaScript test framework running on node and the browser. Mocha tests run serially, allowing for flexible and accurate reporting, while mapping uncaught exceptions to the correct test cases.

learn more… | top users | synonyms

0
votes
0answers
6 views

Why $rootScope.$new does not let template into the directive?

I'm building unit testing using Karma and Mocha. Testing my directives, and using html2js (It converts the htmls to cached strings in $templateCache). Interestingly, when using $rootScope.$new() in ...
0
votes
0answers
7 views

Enyo App, Mocha with jscoverage

We have recently started using Mocha (from Vows). We have set it up so that zombie loads our (enyo) app then we "bang on it" from the outside. So if we need a model to test, we create it, manipulate ...
0
votes
1answer
12 views

How do I tell Mocha to only run a certain test in the browser (and not in node.js)?

I’m using Mocha to test modules in my javascript application. One of my modules depends on there being a document object, so the test for that module fails when I run my tests in node.js and passes in ...
0
votes
1answer
17 views

Can't make Mocha before() nested callback clause behave synchronously

Running into async hell again with the following inner callback in a test I am writing. I've commented the callback that doesn't wait. I'm using both an async.series to marshall the functions, and ...
0
votes
2answers
23 views

Node.js Mocha async test doesn't return from callbacks

I'm utterly confused on how to wrap nested async callbacks in a Mocha test. Here is the offending code sample: It's calling Amazon S3 to check that files exist: var should = require('should'); var ...
0
votes
0answers
6 views

Running the same mocha test multiple times with different data

Problem I have several tests that do the same thing in mocha. This for me, it's duplication, and is the worst thing to do when you want your system to be maintenable. var exerciseIsPetitionActive = ...
-1
votes
0answers
16 views

Unit testing non node jquery plugins with cheerio mocha chai and sinon

So I have to test methods which use a window dom in a purely server side environment and i don't know how to create a window that will satisfy these external libraries , any suggestions or sources ...
4
votes
1answer
94 views

Karma is loading tests using RequireJS but the actual specs are not running

I have a problem where I am trying to get the Karma runner to execute my mocha specs that are loaded using RequireJS. Unfortunately, I can't figure out why the specs won't execute even though the ...
1
vote
0answers
14 views

In debug mode, mocha doesn't stop on debugger statements in a spec file when using node-inspector

When I run mocha with --debug-brk and open chrome dev tools with node-inspector, the debugger skips over any debugger statements that I put in my specfile. I can get debugger statements to work in ...
2
votes
1answer
41 views

nodejs/mocha/nock - mocking an entire html response

How can I mock an entire HTML body response for my tests? I'm using nodejs/mocha/nock. With nock I can mock JSON responds just fine, for example: nock('http://myapp.iriscouch.com') ...
0
votes
1answer
63 views

Organising tests using Mocha & Should.js

I'm new to unit testing using the Mocha & should.js. I'm using the Mocha's BDD for testing my application. The application I'm testing has different components like account, products & order. ...
0
votes
1answer
37 views

Starting node.js with full config from gruntjs (before executing mocha tests)

I use Mocha to test my Node/Express.js services, and I'd like to automate these with Grunt to run against a test instance of the server (i.e., identical configuration just listening on a different ...
0
votes
0answers
18 views

Mocha.js tests bail(false) do not work for beforeEach

When I try to start my mocha test with bail(false) I need to not stop tests even if some beforeEach hook gives an error. But this doesn't help, did someobody coped with this earlier? Or.. is it ...
0
votes
1answer
61 views

MakeFile to run Mocha tests with NPM

I am trying to create a MakeFile to run my Mocha unit tests with NPM. So I have Mocha installed and a unit test created in: {project_root}/test/test.js Now, when I try 'make test' Make replies ...
1
vote
0answers
72 views

Angular testing, using mocha, unexpected requests

In my angular tests I keep getting a Error: Unexpected request: GET 'some/rails/view.html' I'm using konacha for testing, which uses mocha instead of jasmine. The project is based around a Rails app ...
1
vote
1answer
24 views

Mocha testing: faking a method

Problem I have the following javascript file I want to test: function myLocalHouse() { this.init = function() { $.post(//Ajax call using jQuery); }; this.buyHouse(money, ...
0
votes
1answer
32 views

Basic mocha TDD interface

Problem I have the following file in javascript: function myLocalHouse() { this.buyHouse(money, date) { //code I want to test with mocha }; }; I want to test the buyHouse method. What I ...
0
votes
2answers
57 views

How do you instruct mocha/nodejs to wait till all db operations are over

I'm trying to test if some of my db operations are executed properly. The flow is as follows (I'm using mocha for testing) Call code which loops through data and saves it to redis Get data from ...
0
votes
1answer
45 views

Mocha and JSCover

I am using mocha test my nodejs code. I would like to get a coverage report. I found the JSCover I am trying to run. But I am getting ReferenceError: _$jscoverage is not defined I am executing: ...
0
votes
1answer
23 views

How to make mocha let my program write files?

I have a very strange behaviour (from my point of view): I cannot write any file when I make my unit tests using mocha (I can create the files but nothing is written to them). As an example I have ...
0
votes
1answer
24 views

Mocha non-global references

Let's say I have a structure like so: /Users/me/Desktop... app/ node_modules/ subdir/ test/ mytest.coffee If I cd /Users/me/Desktop/app/subdir, then run mocha tests ...
2
votes
2answers
64 views

What's the best way to unit test an event being emitted in Nodejs?

I'm writing a bunch of mocha tests and I'd like to test that particular events are emitted. Currently, I'm doing this: it('should emit an some_event', function(done){ ...
0
votes
1answer
22 views

Use mocha with grunt-contrib-connect or through filesystem?

Is it better to use mocha with a local server through the grunt-contrib-connect task or just run it with grunt-mocha? What are the differences/downsides of both?
5
votes
1answer
94 views

How do I stub a method of an instance only if a specific instance variable has a value?

I have an object MyObject: class MyObject def initialize(options = {}) @stat_to_load = options[:stat_to_load] || 'test' end def results [] end end I want to stub the results ...
0
votes
0answers
21 views

Where should I put my custom html in a mocha test?

I'd like to use mocha for js unittesting. I've been using qunit before in other projects but I ran into some issues with phantomjs and so on. QUnit has an area like #qunit-fixture where you can ...
0
votes
1answer
26 views

Stuck with a mocha test on a mongoose express app

Here's the deal, I have this Foo model in /models/foo.js: var mongoose = require('mongoose'), Schema = mongoose.Schema; var Foo = new Schema({ Bar : {type: Boolean, default: false}, Baz ...
0
votes
1answer
27 views

Rspec: mock update_attributes in model

I'm pretty new in testing rails applications. Now, I'm learning how to mock methods. I have method that changes password in my User model: def change_password(user, pass) ...
0
votes
1answer
101 views

.click() not working in mocha-phantomjs on certain elements

I am writing some tests using the Mocha test framework and Chai assertions library I've been testing these in a chrome browser and they work fine, but then I try them in the headless browser ...
0
votes
1answer
18 views

Where and how are callbacks in Mocha defined?

In this code example for asynchronous code on the Mocha homepage: describe('User', function(){ describe('#save()', function(){ it('should save without error', function(done){ var user = ...
0
votes
1answer
37 views

node inspector with mocha not working with 'debugger' command

I am using mocha to test my code. I am using node inspector to debug my code. bash mocha test/test.* --debug-brk This works but not so well. It stops at the first line of code in mocha. I want it ...
1
vote
0answers
33 views

Mocha.js: to run “after” hook even if test suit fails

Is it possible to run "after" hook even if one of tests (suite) fails?
0
votes
1answer
47 views

Nock intercepts the HTTP POST requests and hangs during testing Mocha/Node.js module in CoffeeScript

I am wondering if you have experienced the situation where the 'nock' module intercepts the http request but stops without any logging...at least, that appears to me. I may be wrong. Here is the test: ...
0
votes
1answer
28 views

how do I modify a mocha reporter before a grunt test run?

I have grunt set up with mocha. It's running fine, but I'd like to get a more detailed report if a test fails from time to time. Naturally I'd just like to run grunt detailedTest instead of modifying ...
1
vote
1answer
34 views

Can zombie test that an element does not exist?

I'm trying to use zombie.js (with mocha) on an express app to make sure some elements don't show on a page. Here's how I try to do this: var app = require('../app).app, // this is express but you ...
2
votes
0answers
42 views

Reading Environment specific variables from test file Compound.js

I'm working on a compound js app. In environments/test.js I have exported a variable as follows: app.host = "http://mysite.com" When I run the app as below: NODE_ENV=test node . I could access ...
0
votes
1answer
27 views

redis hash command hang while async callback is present Node.js

My goal is to have integration test that tests a Node Module which saves values in the redis. Here is the test: require('coffee-script'); var should = require('should') , redis = require('redis') ...
1
vote
1answer
35 views

Bail suite on mocha (sub)suite error but continue next?

I'm using mocha in node.js with have bdd-style specs. Is it possible to bail a sub-suite after the first error but continue it's parent/sibling suites? Say I test different routes to access an api, ...
1
vote
1answer
44 views

Why is an identical Mocha test failing after the first one?

I have a class MyClass that accepts objects to attach to it as methods. These methods call MyClass.push to add data to the object's internal @_list array. The second of two identical test cases fails, ...
0
votes
2answers
144 views

How to test nodejs backend code with Karma (testacular)

How do I setup Karma to run my backend unit tests (written with Mocha)? If I add my backend test script to the files = [], it fails stating that require is undefined.
0
votes
1answer
34 views

compoundjs mocha tests failing on ubuntu server

My tests run fine in my OS X environment, but when I run them on my ubuntu (EC2) server, the tests fail with: ✖ 1 of 40 tests failed: 1) AccountController "before each" hook: Error: done() invoked ...
2
votes
1answer
148 views

Code coverage with mocha

I am using mocha for testing my nodejs application. I am not able to figure out how to use its code coverage feature. I tried googling it but din't find any proper tutorial. Please help.
0
votes
1answer
36 views

Failing mocha test on hash of favicon static image

I'm trying to use mocha, request, and a SHA1 hash to write an integration test to confirm that the favicon being served from Express is the same as the one on the file system. I get two different ...
0
votes
1answer
82 views

Testing Ember (v1.0.0-rc.3) nested controllers using Mocha and Chai

I am trying to write test cases for controllers of an Ember (v1.0.0-rc.3) Application using Mocha and Chai. One of my controller is making use of another controller as follows App.ABCController = ...
0
votes
1answer
138 views

In mocha testing while calling asynchronous function how to avoid the timeout Error: timeout of 2000ms exceeded.

In my node application i'm using mocha to test my code.While calling many asynchronous function using mocha i'm getting timeout error(Error: timeout of 2000ms exceeded. ).How can i resolve this. ...
0
votes
1answer
47 views

Why does my Q chained promise rejection not behave the way I expect?

What am I doing wrong here? I have a piece of code that looks something like this: function getUserList(requestingUserId){ return customerRepo.getCustomersAllowedByUser(requestingUserId) ...
0
votes
1answer
33 views

Making mocha “use strict” when running in node

Is there a way to make Mocha run tests in strict mode when running on node? Normally you can enable this in node by running node --use_strict. Is there a way to do the same thing for mocha?
1
vote
2answers
27 views

How to test a mixed-in class method is being called with RSpec and Mocha?

I have a module: module MyModule def do_something # ... end end used by a class as follows: class MyCommand extend MyModule def self.execute # ... do_something end end How ...
0
votes
1answer
49 views

Mocha: stubbing method with specific parameter but not for other parameters

I want to stub a method with Mocha only when a specific parameter value is given and call the original method when any other value is given. When I do it like this: ...
0
votes
1answer
101 views

Sinon.js: Correct way to stub and analyze the return

I am writing a node app using coffeescript and doing some TDD using mocha.js. Please can someone point me correct way to write the test. What I want to do: Fake response of 'ra.do_get'and then call ...
0
votes
1answer
53 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', ...

1 2 3 4 5 10