jest/e2e/filter/my-broken-setup-filter.js

23 lines
519 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
module.exports = function (tests) {
return {
filtered: tests.filter(t => t.includes('foo')).map(test => ({test})),
};
};
module.exports.setup = function () {
return new Promise((resolve, reject) => {
setTimeout(() => {
reject(new Error('My broken setup filter error.'));
}, 0);
});
};