mirror of
https://github.com/donl/slouch.git
synced 2026-05-25 22:07:24 -06:00
* fix(circleci): use port 15984 * fix(circleci): use config for port * fix(jshint) * fix(circleci): 15984
14 lines
263 B
JavaScript
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');
|
|
|
|
});
|