mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
537f1c7aee
* implement swap event metric e2e test * fix lint error * clean up initial balance helpers * fix eslint warnings * Fix `token_to_amount` format to address firefox bug and refactor tests
18 lines
604 B
JavaScript
18 lines
604 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/constants/error-utils.test.js',
|
|
'./development/fitness-functions/**/*.test.ts',
|
|
'./test/e2e/helpers.test.js',
|
|
],
|
|
recursive: true,
|
|
require: ['test/env.js', 'test/setup.js'],
|
|
};
|