1
vote
1answer
24 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
54 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 ...
4
votes
1answer
182 views

Zombie.js “assert is not defined” for multiple visits?

I'm setting up integration testing with Zombie.js and Mocha, and running into the puzzling problem that only the first browser.visit() call seems to succeed. My specs look like this: browser = new ...
1
vote
2answers
219 views

Emberjs integration testing with konacha

Having trouble doing integration testing with Konacha on Ember.js 1.0.rc1. My problem is that all tests run before any views are rendered. Is there a way to know when everything has been rendered ...
2
votes
1answer
191 views

how should I test client/server socket.io in mocha?

How does one properly shutdown socket.io / websocket-client? -- related, but out of date / didn't work I'm writing a set of tests to test a server-side socket. Got the code from jamescarr on github. ...
1
vote
1answer
153 views

backbone.js doesn't render view with konacha

I want to do some DOM test for my backbone.js application with konacha. And I have read some entries about konacha below. ...
1
vote
1answer
72 views

how do I assert that a function was called?

I have a Goat class: class Goat constructor: (@headbutt) -> @isCranky = true approach: -> if @isCranky @headbutt() I'd like to write a Mocha test to assert that ...
0
votes
1answer
30 views

how can I get my 'before' function to make other tests wait for its completion?

describe 'TheObject', -> before -> console.log 'loading text' fs.readFile('../data/data.json', 'utf8', (err, data) -> text = data ) describe 'simple', -> it ...
1
vote
1answer
170 views

what's the least resistance path to debugging mocha tests?

I'm building a mocha test in coffeescript. Right at the top of the test I have: require "../assets/js/theObject.coffee" debugger ss = new TheObject() I'd like to stop on that debugger line because ...
0
votes
1answer
172 views

how do I test a basic javascript file with mocha?

I'm missing something obvious here with Mocha and Coffeescript/Javascript. I've got a file in /static/js/ called ss.coffee, it's very simple, just one function: `function sortRowCol(a, b) { if ...
0
votes
1answer
263 views

Running node-phantom in mocha

I have a simple test here I expected to work. The idea is to get phantom working in mocha's tdd. (by the way I have tried both node-phantom and phantomjs-node with no success.) nodephantom = ...
0
votes
2answers
150 views

My mocha tests work separately, but fail when run all at once

This probably has to do with asynchronous code, but I'm not sure what. The both pass when I run them apart from each other: mocha test/models.coffee and mocha test/login.coffee But describe 'saving ...
4
votes
1answer
282 views

How to track down what is causing a timeout?

I am using Mocha to run a number of tests. When I get to one particular set of tests: describe "Results Summaries", -> before (done) -> Testing.use("surveyplanet_test") ...
1
vote
2answers
851 views

How to make mocha watch, compile and test coffeescript with dependencies on save

I'm working on a project that uses coffeescript for development and testing. I run the tests in node with mocha's --watch flag on so I can have the tests run automatically when I make changes. While ...
2
votes
2answers
164 views

Requirejs with mocha

RequireJS and mocha have some problem working together. I figured this is because mocha does not wait for requireJS's asynchronous operations to finish and decides testing is done. As a hot fix I ...
0
votes
2answers
113 views

why won't redis commands work from within my mocha test for coffee script files?

class ThingWithRedis constructor: (@config) -> @redis = require('redis').createClient() push: (key, object) -> @redis.set(key, object) fetch: (key, amount) -> @redis.get ...
4
votes
2answers
1k views

Mocha, should.js and asserting an exception

I have a file app.coffee: class TaskList class Task constructor: (@name) -> @status = 'incomplete' complete: -> if @parent? and @parent.status isnt 'completed' ...
1
vote
2answers
484 views

Requiring external js file for mocha testing

So I'm playing around with BDD and mocha with my express.js project. I'm just getting started so here is what I have as my first test case: should = require "should" require "../lib/models/skill.js" ...
2
votes
1answer
168 views

callback being called twice when my unit test fails

I can't figure out why my save callback is being called twice in my mocha test when the callback fails. It doesn't call the save twice, it only fires the callback for the save again but with the ...
1
vote
1answer
165 views

Can't get a file required before every test

I try to setup mocha in combination with coffeescript and chai. Before every file containing the tests, I want to include the following file: test/_helper.coffee path = require 'path' AppDir = ...
1
vote
1answer
230 views

Strange fs.readFile behavior while testing CoffeeScript with Mocha/Chai

Please consider I have the following CoffeeScript code: class Foobar test: (path) -> fs = require 'fs' fs.readFile path, (err, data) -> console.log 'fs.readFile ...
4
votes
1answer
760 views

Testing Angular express node app

I have an issue with testing my application with both jasmine-node and mocha (with zombie). The point is angular doesn't work with this test environment - when browser.visit "http://localhost:3000/" ...
0
votes
1answer
74 views

ST2 Mocha CoffeeScript symbols

Anyone know if there's a way to browse Mocha tests (in CoffeeScript)via Sublime Text 2 symbols list? Ideally there'd be a plugin, but I'd be fine with editing my CoffeeScript plugin to look for ...
1
vote
1answer
332 views

Mocha, CoffeeScript, ZombieJS, Timout?

I've came across a weird problem, and I cannot figure out why it's doing it. I'm using express-coffeescript as the framework, mocha for testing along with should, chai, and zombiejs for the browser ...
0
votes
1answer
160 views

Mocha fails with no string diff, utf-8?

I have a failing mocha test that outputs my string with the "Actual" and "Expected" highlighting... except that nothing's highlighted. After some head-bashing, I think I've determined that my ...
2
votes
1answer
257 views

Mocha Express Coffee should.equal not working

I am following a tutorial. While I run require "should" describe "feature", -> it "should add two numbers", -> (2+2).should.equal 4 And i run mocha routes-test.coffee --compilers ...
0
votes
1answer
167 views

Coffee Script TypeError in compiler when running Mocha.js unit tests

So I am trying to run unit tests with Mocha and Chai that are written in CoffeeScript. I know that Mocha has exclude coffeescript since 1.0 so I am passing the compiler flag mocha --compilers ...
1
vote
1answer
197 views

Unexpected '->' when running mocha coffeescript based test under node

I am trying to play around with mocha running on node under Windows. I've also decided why not throw some CoffeeScript in for fun. describe 'Array', -> describe '#indexOf()', -> it ...
0
votes
1answer
629 views

Writing tests in Mocha/Chai with the namespace module paradigm

Im writing a series of coffeescript files for doing math operations and I need to write some tests. I figure that mocha and chai are the way to go. At the moment, Im using the namespace method to ...
0
votes
1answer
354 views

Testing CS classes in the browser with Mocha?

What's the convention for making my mocha tests aware of my class under test (for running Mocha in the browser)? Since both are wrapped in closures, neither is in the global scope... ...
3
votes
1answer
459 views

Defining Window for Testing in Mocha

I'm trying to integrate some testing into my current Backbone/CoffeeScript application. I have created a module for my application baked into the window object, but running any mocha tests fail ...
8
votes
1answer
2k views

Cannot run Mocha with CoffeeScript

Makefile - Content: REPORTER = dot all: build build: @./node_modules/coffee-script/bin/coffee \ -c \ -o lib src clean: rm -rf lib mkdir lib watch: ...
4
votes
2answers
736 views

mocha as a library

I would like to use mocha (the node.js test framework, not the ruby mocking library) as a library, rather than using the mocha executable to run my test. Is it possible to run a mocha test this way? ...
1
vote
1answer
1k views

Node.js and coffeescript — testing app with Mocha and Zombie

I am trying to test a node.js webapp I have started working on with Mocha and Zombie. But there are a few things I still don't understand and would like some help. Please note that I am using express ...