@budibase/server 2.3.18-alpha.15 → 2.3.18-alpha.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -172,6 +172,9 @@ module FetchMock {
172
172
  ),
173
173
  ok: true,
174
174
  })
175
+ } else if (url === "https://www.googleapis.com/oauth2/v4/token") {
176
+ // any valid response
177
+ return json({})
175
178
  } else if (url.includes("failonce.com")) {
176
179
  failCount++
177
180
  if (failCount === 1) {