Additional address entries (#166)

This commit is contained in:
Jaco Greeff
2021-03-10 17:14:48 +01:00
committed by GitHub
parent d7a0a53795
commit f6afe898fe
2 changed files with 4 additions and 2 deletions
+1
View File
@@ -67,6 +67,7 @@
"1s3B8f5dJbtV4rVTZs1WNRpzKCUJWxK2zULErjmA52Do2SF" "1s3B8f5dJbtV4rVTZs1WNRpzKCUJWxK2zULErjmA52Do2SF"
], ],
"polkadot-wallet.org": [ "polkadot-wallet.org": [
"12nGrKnQprcq19X8zdVevfXZPNgD4AoDnsAwxs6FoEeThudY",
"1buui9R8oXZq3Y4Py39SJUySp5RtEgDgqYYPF3Kuui6JQDv" "1buui9R8oXZq3Y4Py39SJUySp5RtEgDgqYYPF3Kuui6JQDv"
], ],
"polkadot.center": [ "polkadot.center": [
+3 -2
View File
@@ -3,11 +3,12 @@
const config = require('@polkadot/dev/config/jest.cjs'); const config = require('@polkadot/dev/config/jest.cjs');
module.exports = Object.assign({}, config, { module.exports = {
...config,
moduleNameMapper: {}, moduleNameMapper: {},
modulePathIgnorePatterns: [ modulePathIgnorePatterns: [
'<rootDir>/build', '<rootDir>/build',
'<rootDir>/packages/phishing/build' '<rootDir>/packages/phishing/build'
], ],
transformIgnorePatterns: ['/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)'] transformIgnorePatterns: ['/node_modules/(?!@polkadot|@babel/runtime/helpers/esm/)']
}); };