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.
1
vote
1answer
11 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, ...
0
votes
1answer
19 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
1answer
15 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
16 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
31 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
16 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
26 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
29 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
22 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
0answers
21 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
17 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
31 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
49 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
25 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', ...
0
votes
1answer
37 views
How to test the Node js application with mocha-phantomjs
I need to test my Node js apllication with mocha-phantomjs.I have tried the below code to test the app but i'm getting error as 'ReferenceError: Can't find variable: require'.How to resolve this.
...
0
votes
0answers
44 views
How to configure karma-runner (also known as testacular) to work with closure-library
I'm trying to use karma-runner with mocha testing framework to test an application built with closure-library and angularjs.
I always get namespace.Application is not defined
thanks in advance.
...
0
votes
0answers
13 views
is it possible to set up amdefine in tests so that I don't have to define it in all my module files?
I have a set of objects that are used browser side but tested server side with mocha. I'm using require.js for AMD loading. The Require.js site suggests using amdefine on server-side to get the ...
-1
votes
1answer
16 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(
...
-1
votes
0answers
35 views
make test fails ./node_modules/.bin/mocha: line 2: dirname & uname: command not found
I'm reading the sitepoint.jump start node nbook, and in chapter02 I need to run make test, but it fails with the following error :
./node_modules/.bin/mocha: line 2: dirname: command not found
...
1
vote
1answer
44 views
Elegant approach to filter stdout contents to file? Or to turn off Mocha's watching spinner?
I'm using mocha -w for continuous testing.
I've run into a bug with another lib's socket connections that only occurs when using mocha -w for an extended time. I need to capture debug output that is ...
0
votes
0answers
16 views
Stubbing Grape helper
I have Rails app with Grape API.
The interface is done with Backbone and Grape API provides it all data.
All it returns is user-specific stuff, so i need reference to currently logged in user.
...
0
votes
1answer
38 views
Javascript Function Find
I have been giving some JavaScript to look at and I'm finding it hard to solve this.
I need to write a function to findByName the correct name with the name Tom Jones passed in.
So far I have ...
0
votes
0answers
51 views
In Node js how to use Should js assertion library with mocha-phantomjs testing framework
In node application.How can i use 'Should js' assertion library with 'mocha-phantomjs' testing framework.
Test.js
var should=require('should');
describe("Comparison", function () {
...
0
votes
1answer
53 views
How to use Should.js assertion library with Phantomjs-mocha testing framework
In my application i need to use Phantomjs-mocha testing framework to test my application node js code.So i have installed Should js assertion library.While running some example code i'm getting ...
0
votes
1answer
38 views
Tell Mocha to use CoffeeScript files by default
I'm currently trying to set up testing in Mocha for an application I'm writing using Zappa.js. So far I've been following this tutorial, and converting what I need from JS to Coffeescript.
However ...
0
votes
1answer
20 views
Mocha expected at most once, invoked twice, but method is clearly invoked only once
I'm using Mocha for mock testing. Below is the relevant code:
# test_player.rb
should "not download the ppg more than once for a given year" do
@durant.expects(:fetch_points_per_game).at_most_once
...
0
votes
1answer
47 views
Chai exports are not found in Mocha test
I have created simple Mocha test. It works perfectly when Node "assert" module is used. I run it from command line (Mocha is installed as a global node module):
$ mocha myTest.js
․
1 test complete ...
0
votes
2answers
36 views
Cleaning out test database before running tests
What is the best way to clean out a database before running a test suite (is there a npm library or recommended method of doing this).
I know about the before() function.
I'm using node/express, ...
0
votes
1answer
51 views
Testing node server with mocha and nested callbacks
I'm learning node and mocha and have the test below (production code increments a field in the database).
To see if its working, I'm outputting the value of this field before and after a call to ...
1
vote
0answers
97 views
How do I test AngularJS code using Mocha?
Basically, I'm quite experienced with Mocha (written thousands of unit tests), and I'm quite new to AngularJS (written just my first project).
Now I am wondering how I might unit test all the ...
0
votes
0answers
37 views
Mocha PhantomJS setup
I wonder if there is a better way to test mocha test with phantomJS then having a html file for every test. So is there a grunt plugin or such a thing that let me write my test in single JavaScript ...
1
vote
3answers
43 views
Stateful interaction for testing Express Apps
I wrote a simple JSON api with express and I'm trying to use mocha to do some black-box testing. Throughly testing the API requires authenticating as different users, so each test for a specific ...
0
votes
0answers
36 views
Testing an EventEmitter subclass using sinon-chai and mocha
After upgrading to node version 0.10.5 my tests got broken. I'm trying to figure out what is going on. I include three files in the gist http://goo.gl/i5oK1
fswalker.js : File System Walker, ...
0
votes
0answers
58 views
Nodejs Mocha Test using Zombie getting Wrong Document Error
I fairly new to node and mocha and brand new to Zombie. I am trying to write some functional tests for my application. It is built using node/express. And when you try to log into a page (the ...
0
votes
1answer
24 views
Any tricks for running large (heavy memory-using) Mocha test suites in Internet Explorer?
My company has built up a wonderful large (472 and growing) Mocha test suite for our app, and it's incredibly useful ... in Chrome and Firefox.
In IE however the tests break down after 30 or so ...
0
votes
2answers
18 views
How to test one function of a class and how to avoid some code when test a function?
Sample code:
function TestClass() {
var this.name = 'test';
var this.host = '...';
var this.port = '...';
//...
this.connection = this.createConnection(....);
}
...
0
votes
1answer
18 views
Does '#' has special meaning in Mocha?
describe('#indexOf()'....
it('#doSth()');
Does '#' has special meaning in Mocha? What does describe and it actually do? sorry not found document for describe and it
0
votes
0answers
29 views
How to use mocha with maven
I want to run mocha tests whenever I build my project using maven.
Is there any maven plugin which can do it for me ?
I have already used Jasmine Maven Plugin.
If there does not exist one, what are ...
0
votes
1answer
33 views
How to correct the “connection.readyState” of mongoose on test cases from “connecting” to “connected”?
I have created a model of users(registration) in mongoose. This model is accessed from test case created in mocha as well as register form from front end. The new user can be saved from register form ...
0
votes
4answers
81 views
mocha tests with extra options or parameters
I am writing test cases for my nodejs application using mocha. The test cases need an api key as an extra input option or parameter. The api key is private, so I don't want to include it directly in ...
0
votes
0answers
25 views
resetting Mongoose model cache
I'm trying to get mocha's --watch option to work. It works fine, until I have to do anything with a mongoose model. Apparently Mongoose keeps some sort of cache, from my understanding, and the error I ...
0
votes
0answers
30 views
Zombie: Unexpected token < SyntaxError: Unexpected token <
I'm trying to setup an automated testing environment with Mocha for a jQuery plugin I'm writing and having trouble with Zombie actually loading the script. The error I'm getting is the one in the ...
0
votes
2answers
60 views
When Mocha Test fails it logs an object to console
When all my tests pass, everything works as expected. However, when a test fails with any reporter active, the runner prints an object representing the strack trace rather than the pretty formatted ...
2
votes
1answer
54 views
jQuery Plugin TDD Starting Point
I have some existing Javascript code that I'm looking to port to a jQuery plugin. The code itself is nothing complex: Flickr API photo gallery with varying photo sizes, a few other things. I coded it ...
0
votes
1answer
92 views
Mocha tests do not start selenium browser
I would like to use Mocha+Selenium to test a webapp. I have installed WebDriverJS (via npm install webdriverjs), and Mocha (via npm install mocha).
When I run this code via node (node test.js), a new ...
-1
votes
1answer
19 views
How to do function tests for TWITTER API
I am creating a web app for a project. I want to allow my users to post there blogs onto twitter using the twitter API. they will generate a blog inside my website and if they would like to share ...
1
vote
0answers
113 views
Testing Angular With Mocha and Chai
I want to test my angular app with Yeoman which use Mocha with Phantom and Chai for assertion.
But when i run any sample test case the test case do not run properly it shows PhantomJs timed out due to ...
2
votes
1answer
165 views
mocha testing doesn't work in the yeoman ember generator
I've barely modify the generated code by the ember generator
yo ember
and change the test/spec/test.js a little bit
'use strict';
(function () {
describe('Give it some context', function () {
...
0
votes
2answers
82 views
using Blanket.js for a compoundjs app to generate coverage report
I have compoundjs application in which I have used the scaffold generator to generate controller and its test cases. The test cases are running correctly. But I need to generate the code coverage ...
0
votes
1answer
80 views
How to test a stub returning a promise in an async test?
How can I test this in a async manner?
it('Should test something.', function (done) {
var req = someRequest,
mock = sinon.mock(response),
stub = sinon.stub(someObject, 'method');
...

