slouch/test/node-and-browser.js
Geoff Cox 0adbd365ad
fix(circleci): use port 15984 (#62)
* fix(circleci): use port 15984

* fix(circleci): use config for port

* fix(jshint)

* fix(circleci): 15984
2017-12-08 14:58:04 -08:00

14 lines
263 B
JavaScript

'use strict';
var chai = require('chai');
chai.use(require('chai-as-promised'));
chai.should();
describe('slouch', function () {
// Sometimes the DB gets a little backed up so we need more time for our tests
this.timeout(20000);
require('./spec');
});