mirror of
https://github.com/silkimen/cordova-plugin-advanced-http.git
synced 2026-01-31 00:00:03 +08:00
13 lines
273 B
JavaScript
13 lines
273 B
JavaScript
const wd = require("wd");
|
|
|
|
require('colors');
|
|
|
|
const chai = require('chai');
|
|
const chaiAsPromised = require('chai-as-promised');
|
|
chai.use(chaiAsPromised);
|
|
|
|
const should = chai.should();
|
|
chaiAsPromised.transferPromiseness = wd.transferPromiseness;
|
|
|
|
exports.should = should;
|