mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
00d155ce2f
* feat(878): implement new incoming transaction toggle networks for setting and onboarding * Update state snapshots * feat(878): change gaps, migration types based on comment --------- Co-authored-by: Mark Stacey <markjstacey@gmail.com>
19 lines
657 B
JavaScript
19 lines
657 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/permissions/**/*.test.js',
|
|
'./app/scripts/controllers/mmi-controller.test.js',
|
|
'./app/scripts/controllers/preferences.test.js',
|
|
'./app/scripts/constants/error-utils.test.js',
|
|
'./development/fitness-functions/**/*.test.ts',
|
|
'./test/e2e/helpers.test.js',
|
|
],
|
|
recursive: true,
|
|
require: ['test/env.js', 'test/setup.js'],
|
|
};
|