Files
YellowLabTools/test/server/testQueueTest.js
T
2014-09-03 09:06:35 +02:00

11 lines
275 B
JavaScript

var should = require('chai').should();
var testQueue = require('../../app/lib/testQueue.js');
describe('testQueue', function() {
it('should have a method push', function() {
testQueue.should.have.property('push').that.is.a('function');
});
});