UNPKG

1.34 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, '__esModule', {
4 value: true
5});
6exports.default = void 0;
7
8var _jestEach = require('jest-each');
9
10/**
11 * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
12 *
13 * This source code is licensed under the MIT license found in the
14 * LICENSE file in the root directory of this source tree.
15 */
16var _default = environment => {
17 environment.global.it.each = (0, _jestEach.bind)(environment.global.it);
18 environment.global.fit.each = (0, _jestEach.bind)(environment.global.fit);
19 environment.global.xit.each = (0, _jestEach.bind)(environment.global.xit);
20 environment.global.describe.each = (0, _jestEach.bind)(
21 environment.global.describe,
22 false
23 );
24 environment.global.xdescribe.each = (0, _jestEach.bind)(
25 environment.global.xdescribe,
26 false
27 );
28 environment.global.fdescribe.each = (0, _jestEach.bind)(
29 environment.global.fdescribe,
30 false
31 );
32 environment.global.it.concurrent.each = (0, _jestEach.bind)(
33 environment.global.it.concurrent,
34 false
35 );
36 environment.global.it.concurrent.only.each = (0, _jestEach.bind)(
37 environment.global.it.concurrent.only,
38 false
39 );
40 environment.global.it.concurrent.skip.each = (0, _jestEach.bind)(
41 environment.global.it.concurrent.skip,
42 false
43 );
44};
45
46exports.default = _default;