Compare commits

...
2 Commits
Author SHA1 Message Date
Chris Troutner 2ff46c1f76 Merge pull request #82 from Permissionless-Software-Foundation/ct-unstable
fix(axios): Updating axios
2021-01-04 14:49:11 -08:00
Chris Troutner 6926bbe113 fix(axios): Updating axios 2021-01-04 14:44:48 -08:00
4 changed files with 774 additions and 262 deletions
+772 -243
View File
File diff suppressed because it is too large Load Diff
+2 -3
View File
@@ -32,9 +32,9 @@
"dependencies": {
"@uppy/core": "^1.10.4",
"@uppy/tus": "^1.5.12",
"apidoc": "^0.17.7",
"apidoc": "^0.25.0",
"assert": "^2.0.0",
"axios": "^0.19.0",
"axios": "^0.21.1",
"bc-bip68": "^1.0.5",
"bchaddrjs-slp": "^0.2.5",
"bigi": "^1.4.2",
@@ -87,7 +87,6 @@
"husky": "^4.3.6",
"lodash.clonedeep": "^4.5.0",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"node-mocks-http": "^1.7.0",
"nyc": "^14.1.0",
"prettier": "^1.18.2",
-8
View File
@@ -3,7 +3,6 @@
*/
const assert = require('chai').assert
const nock = require('nock') // http call mocking
const sinon = require('sinon')
// const axios = require("axios")
@@ -24,17 +23,10 @@ describe('#SLP NFT1', () => {
let sandbox
beforeEach(() => {
// Activate nock if it's inactive.
if (!nock.isActive()) nock.activate()
sandbox = sinon.createSandbox()
})
afterEach(() => {
// Clean up HTTP mocks.
nock.cleanAll() // clear interceptor list.
nock.restore()
sandbox.restore()
})
-8
View File
@@ -3,7 +3,6 @@
*/
const assert = require('chai').assert
const nock = require('nock') // http call mocking
const sinon = require('sinon')
// const axios = require("axios")
@@ -24,17 +23,10 @@ describe('#SLP TokenType1', () => {
let sandbox
beforeEach(() => {
// Activate nock if it's inactive.
if (!nock.isActive()) nock.activate()
sandbox = sinon.createSandbox()
})
afterEach(() => {
// Clean up HTTP mocks.
nock.cleanAll() // clear interceptor list.
nock.restore()
sandbox.restore()
})