Skip to content

Commit

Permalink
add sinon-chai
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Schreck committed Jan 22, 2014
1 parent 24e1149 commit 7eed352
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/shared/syncer.test.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
var _ = require('underscore'),
Backbone = require('backbone'),
should = require('chai').should(),
chai = require('chai'),
sinon = require('sinon'),
sinonChai = require('sinon-chai'),
should = chai.should(),
syncer = require('../../shared/syncer'),
BaseModel = require('../../shared/base/model'),
App = require('../../shared/app');

chai.use(sinonChai);

describe('syncer', function() {

describe('interpolateParams', function() {
Expand Down

0 comments on commit 7eed352

Please sign in to comment.