Skip to content

Commit

Permalink
chore(merge): merge dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Jul 22, 2021
2 parents 0c26802 + 43983c5 commit 2f1f065
Show file tree
Hide file tree
Showing 758 changed files with 28,827 additions and 25,137 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"consistent-return": "off",
"func-names": "off",
"simple-import-sort/imports": [
Expand Down
31 changes: 29 additions & 2 deletions config/jest/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Enzyme from 'enzyme'
import Adapter from 'enzyme-adapter-react-16'

import "@babel/polyfill"
import '@babel/polyfill'

Enzyme.configure({ adapter: new Adapter() })

Expand All @@ -15,6 +15,33 @@ window.matchMedia =
return {
matches: false,
addListener: function () {},
removeListener: function () {}
removeListener: function () {},
}
}

window.coins = {
BTC: {
coinfig: {
name: 'Bitcoin',
precision: 8,
products: ['PrivateKey'],
symbol: 'BTC',
type: {
name: 'Bitcoin',
parentChain: 'BTC',
},
},
},
XLM: {
coinfig: {
name: 'Stellar',
precision: 7,
products: ['PrivateKey'],
symbol: 'XLM',
type: {
name: 'Stellar',
parentChain: 'XLM',
},
},
},
}

0 comments on commit 2f1f065

Please sign in to comment.