1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00

more branch cov

This commit is contained in:
Martin McKeaveney 2021-03-16 19:27:18 +00:00
parent c0e9ee282a
commit cd1b35a77a
5 changed files with 13 additions and 6 deletions

View file

@ -1,6 +1,6 @@
const fetch = jest.requireActual("node-fetch")
module.exports = async url , opts=> {
module.exports = async (url, opts) => {
// mocked data based on url
if (url.includes("api/apps")) {
return {

View file

@ -3,6 +3,7 @@ function CouchDB() {
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
this.plugin = jest.fn()
}
module.exports = CouchDB

View file

@ -1,6 +1,13 @@
const PouchDB = require("pouchdb")
const CouchDBIntegration = require("../couchdb")
jest.mock("pouchdb")
jest.mock("pouchdb", () => function CouchDBMock() {
this.post = jest.fn()
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
this.plugin = jest.fn()
})
class TestConfiguration {
constructor(config = {}) {

View file

@ -1,6 +1,6 @@
const fetch = require("node-fetch")
const RestIntegration = require("../rest")
jest.mock("node-fetch", () => jest.fn(() => ({ json: jest.fn() })))
jest.mock("node-fetch", () => jest.fn(() => ({ json: jest.fn(), text: jest.fn() })))
class TestConfiguration {
constructor(config = {}) {
@ -44,13 +44,13 @@ describe("REST Integration", () => {
path: "/api",
queryString: "?test=1",
headers: {
Accept: "application/json"
Accept: "text/html"
}
}
const response = await config.integration.read(query)
expect(fetch).toHaveBeenCalledWith(`${BASE_URL}/api?test=1`, {
headers: {
Accept: "application/json"
Accept: "text/html"
}
})
})

View file

@ -2,7 +2,6 @@ const { AuthTypes } = require("../../constants")
const authenticatedMiddleware = require("../authenticated")
const jwt = require("jsonwebtoken")
jest.mock("jsonwebtoken")
jest.dontMock("pouchdb")
class TestConfiguration {
constructor(middleware) {