mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
35ac762e10
This PR adds `snaps` under Flask build flags to the extension. This branch is mostly equivalent to the current production version of Flask, excepting some bug fixes and tweaks. Closes #11626
14 lines
414 B
JavaScript
14 lines
414 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/network/**/*.test.js',
|
|
'./app/scripts/controllers/permissions/**/*.test.js',
|
|
],
|
|
recursive: true,
|
|
require: ['test/env.js', 'test/setup.js'],
|
|
};
|