mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
edf2cc41cb
* adds code fencing * MMI adds mmi-controller * MMI prettier * chore: create keyring builder for CustodyKeyrings * updates code fence to build-mmi * adds dependencies * fix import and prettier * lint * clean up * clean up * removes old methods and adds new * comment for now * adds two missing methods * runs yarn dedupe * adds missing import * bump target values * lavamoat policy update * bump values in coverage targets * prettier import order * coverage report update * clean up * yarn update * yarn dedupe * ran lavamoat:auto * adds zlib entry to storybook/main.js * adds browserify-zlib * clean up * clean up * prettier * prettier * eslint fix * fix paths * fix prettier * fix file name for mocha * adds to config * rename * adds file to configs * test lavamoat clean up * run dedupe * sets value in storybook main.js as false * runs lavamoat auto * updates mmi packages to lighter versions * updates mmi packages * lavamoat auto * adds finalized tx status * lavamoat auto * yarn dedupe * clean up * moving stuff into mmi controller * clean up * updates tresholds * yarn lock review * updates the mmi controller --------- Co-authored-by: Shane Terence Odlum <shane.odlum@consensys.net>
17 lines
572 B
JavaScript
17 lines
572 B
JavaScript
module.exports = {
|
|
// TODO: Remove the `exit` setting, it can hide broken tests.
|
|
exit: true,
|
|
ignore: [
|
|
'./app/scripts/lib/**/*.test.js',
|
|
'./app/scripts/migrations/*.test.js',
|
|
'./app/scripts/platforms/*.test.js',
|
|
'./app/scripts/controllers/app-state.test.js',
|
|
'./app/scripts/controllers/network/**/*.test.js',
|
|
'./app/scripts/controllers/permissions/**/*.test.js',
|
|
'./app/scripts/controllers/mmi-controller.test.js',
|
|
'./app/scripts/constants/error-utils.test.js',
|
|
],
|
|
recursive: true,
|
|
require: ['test/env.js', 'test/setup.js'],
|
|
};
|