Chai is a BDD / TDD assertion library for node and the browser that can be delightfully paired with any javascript testing framework.
0
votes
1answer
27 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
31 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
39 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
1answer
24 views
How to check the value is in object with Chai?
Is it possible to test the value is contained within certain array with Chai assertion library?
Example:
var myObject = {
a : 1,
b : 2,
c : 3
};
var myValue = 2;
I need to do something ...
0
votes
1answer
48 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 ...
4
votes
1answer
179 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 ...
0
votes
0answers
38 views
jsdom and script tags with relative paths
I have some single page demos like this one here: http://notjs.org/examples/forms/formmode_demo.html
I thought, wow, it would be super awesome if could write some tests in my existing mocha chai ...
1
vote
1answer
68 views
Chai.js: Object contains/includes
Chai has an include method. I want to test to see if an object contains another object. For example:
var origin = {
name: "John",
otherObj: {
title: "Example"
}
}
I want to use Chai to ...
0
votes
1answer
255 views
Testing for errors thrown in Mocha
I'm hoping to find some help with this problem. I'm trying to write tests for an application I am writing. I have distilled the problem in to the following sample code. I want to test that an error ...
0
votes
1answer
214 views
Mocha & Chai Async testing in the browser
I am not being able to run async tests with mocha.
Here is my code
describe('Brightcove Wrapper',function(){
describe("#init()", function() {
it("Should inject the brightcove ...
-2
votes
2answers
219 views
create a function to compare if two objects have the same properties in node.js
I am using node, mocha, and chai for my application. I want to test that my returned results data property is the same "type of object" as one of my model objects. (Very similiar to chai's ...
1
vote
2answers
87 views
Assertions library for node.js?
Assertions provided by node.js assert for unit-testing are very limited. Even before I've written the first test I was already creating a few of assertions as it was clear I will keep re-using them.
...
3
votes
2answers
87 views
How (and whether) to modify the object in a Chai BDD chain
I am using ChaiJS with my Casper-Chai plugin, and I am not sure how to go about a particular issue I am encountering.
I would like to be able to write tests such as:
...
0
votes
2answers
153 views
Chrome and Mocha Global Leaks
I have the following extremely simple Mocha / Chai test:
describe('main tests', function () {
var expect = chai.expect, something = null;
before(function () {
something = 0;
});
...
3
votes
0answers
397 views
TDD / BDD in javascript - should.js vs expect.js vs chai.js - what are the advantages of each? [closed]
There are many excellent choices for TDD/BDD assertion in javascript. It seems like many of them accomplish the same things.
What are the differences/advantages for using should.js vs. expect.js? Is ...
1
vote
2answers
137 views
How to get “should.be.false” syntax pass jslint?
I am writing JS UT for my NodeJS code. I am using Chai as the assertion library, and I prefer the should syntax. I also use jslint to check the JS file syntax, even the JS files for UT.
Now I have a ...
3
votes
1answer
154 views
Spy on coffee-script constructor in sinon
I'm attempting to verify that a coffee-script constructor throws an exception (using sinon and sinon-chai).
class Animal
constructor: ->
throw "exception"
class Dog extends Animal
How do ...
2
votes
2answers
103 views
How can I make the exception of Chai.js include stack trace info?
I am using Chai.js on Node.
The line console.log(e) where e is an exception thrown by Chai.js print something like expected a to be within 0..3.
How can I make the exception of Chai.js include stack ...
0
votes
1answer
399 views
Testing for an Asynchronous throw in Mocha
I have a block of code that tries to reconnect to Redis if a connection breaks. If it can not re-establish connection, it throws an error. I am trying to test the block of code that throws the error, ...
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 ...
1
vote
0answers
209 views
Chai, Mocha: Identify should assertion
I'm using mocha and chai as assertions.
I have several assertions in my spec
Exp1.should.be.true
Exp2.should.be.true
Exp3.should.be.true
If one of them fails mocha writes "expected false to be ...
1
vote
1answer
255 views
Equivalent to rspec =~ for arrays in Chai
Does Chai, matchers have an equilivent to rspecs =~ (which means has all elements but order doesn't matter.
Passing example
[1, 2, 3].should =~ [2, 1, 3]
Failing
[1, 2, 3].should =~ [1, 2]