mirror of
https://github.com/donl/slouch.git
synced 2026-05-30 22:07:52 -06:00
* test(couchdb-1) * test(couchdb-1) * fix(couchdb-1): cross-browser config * test(updates): really needs to be continuous * test(membership): coverage in couchdb 1 * test(couchdb-1): disable for circleci
20 lines
388 B
JavaScript
20 lines
388 B
JavaScript
'use strict';
|
|
|
|
var chai = require('chai');
|
|
chai.use(require('chai-as-promised'));
|
|
chai.should();
|
|
|
|
var config = require('./config.json');
|
|
|
|
if (process.env.COUCHDB_PORT) {
|
|
config.couchdb.port = process.env.COUCHDB_PORT;
|
|
}
|
|
|
|
describe('slouch', function () {
|
|
|
|
// Sometimes the DB gets a little backed up so we need more time for our tests
|
|
this.timeout(10000);
|
|
|
|
require('./spec');
|
|
|
|
});
|