testQueueTest.js 275 B

1234567891011
  1. var should = require('chai').should();
  2. var testQueue = require('../../app/lib/testQueue.js');
  3. describe('testQueue', function() {
  4. it('should have a method push', function() {
  5. testQueue.should.have.property('push').that.is.a('function');
  6. });
  7. });