Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | "use strict";
var fluid = require("infusion"),
kettle = fluid.registerNamespace("kettle");
kettle.loadTestingSupport();
// Some definitions to make sure that errors during request get logged to the console. This should really be
// a default
fluid.defaults("gpii.test.errorLoggingRequest", {
listeners: {
"onRequestError.log": "fluid.logUncaughtException",
"onRequestError.logActivity": {
funcName: "fluid.logActivity",
args: [null],
priority: "after:log"
}
}
});
fluid.makeGradeLinkage("gpii.test.requestErrorLinkage", ["kettle.request"], "gpii.test.errorLoggingRequest");
require("./src/Mocks.js");
require("./src/Testing.js");
require("./src/CloudBased.js");
require("./src/CloudBasedOAuth2TestsUtils.js");
require("./src/Acceptance.js");
require("./src/Integration.js");
require("./src/PouchTestCaseHolder.js");
require("./src/NockUtils.js");
|