Skip to content

Commit aea4d29

Browse files
jihchiwyze
andcommitted
Upgrade react-testing-library to v8 (#5)
Co-authored-by: Neil Kistner <[email protected]>
1 parent 4269f87 commit aea4d29

File tree

6 files changed

+124
-77
lines changed

6 files changed

+124
-77
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"testing"
3434
],
3535
"dependencies": {
36-
"bs-dom-testing-library": "^0.4.1",
37-
"react-testing-library": "^5.2.0"
36+
"@testing-library/react": "^8.0.4",
37+
"bs-dom-testing-library": "^0.5.0"
3838
},
3939
"peerDependencies": {
4040
"reason-react": "< 0.8.0"

src/ReactTestingLibrary.re

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ type renderOptions = {
1111
"container": Js.undefined(Dom.element),
1212
};
1313

14-
[@bs.module "react-testing-library"] external cleanup : unit => unit = "";
14+
[@bs.module "@testing-library/react"] external cleanup : unit => unit = "";
1515

16-
[@bs.module "react-testing-library"]
16+
[@bs.module "@testing-library/react"]
1717
external _render : (ReasonReact.reactElement, renderOptions) => renderResult =
1818
"render";
1919

@@ -46,7 +46,7 @@ let getByLabelText = (~matcher, ~options=?, result) =>
4646

4747
let getByTitle = (string, result) => getByTitle(string, result |> container);
4848

49-
let getByValue = (string, result) => getByValue(string, result |> container);
49+
let getByDisplayValue = (string, result) => getByDisplayValue(string, result |> container);
5050

5151
let render = (~baseElement=?, ~container=?, element) => {
5252
let baseElement_ =

src/ReactTestingLibrary.rei

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ type renderOptions = {
7979
"container": Js.undefined(Dom.element),
8080
};
8181

82-
[@bs.module "react-testing-library"] external cleanup : unit => unit = "";
82+
[@bs.module "@testing-library/react"] external cleanup : unit => unit = "";
8383

8484
[@bs.get] external container : renderResult => Dom.element = "";
8585

@@ -119,7 +119,7 @@ let getByLabelText:
119119

120120
let getByTitle: (string, renderResult) => Dom.element;
121121

122-
let getByValue: (string, renderResult) => Dom.element;
122+
let getByDisplayValue: (string, renderResult) => Dom.element;
123123

124124
[@bs.send.pipe: renderResult]
125125
external rerender : ReasonReact.reactElement => unit = "";

src/__tests__/ReactTestingLibrary_test.re

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ describe("ReactTestingLibrary", () => {
5555
});
5656

5757
describe("debug", () => {
58-
open JestJs;
59-
6058
beforeEach(() => {
6159
[%raw {|jest.spyOn(console, 'log').mockImplementation(() => {})|}];
6260
});

src/__tests__/__snapshots__/ReactTestingLibrary_test.bs.js.snap

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,42 +32,54 @@ Object {
3232
</div>
3333
</div>,
3434
"debug": [Function],
35+
"findAllByAltText": [Function],
36+
"findAllByDisplayValue": [Function],
37+
"findAllByLabelText": [Function],
38+
"findAllByPlaceholderText": [Function],
39+
"findAllByRole": [Function],
40+
"findAllByTestId": [Function],
41+
"findAllByText": [Function],
42+
"findAllByTitle": [Function],
43+
"findByAltText": [Function],
44+
"findByDisplayValue": [Function],
45+
"findByLabelText": [Function],
46+
"findByPlaceholderText": [Function],
47+
"findByRole": [Function],
48+
"findByTestId": [Function],
49+
"findByText": [Function],
50+
"findByTitle": [Function],
3551
"getAllByAltText": [Function],
52+
"getAllByDisplayValue": [Function],
3653
"getAllByLabelText": [Function],
3754
"getAllByPlaceholderText": [Function],
3855
"getAllByRole": [Function],
39-
"getAllBySelectText": [Function],
4056
"getAllByTestId": [Function],
4157
"getAllByText": [Function],
4258
"getAllByTitle": [Function],
43-
"getAllByValue": [Function],
4459
"getByAltText": [Function],
60+
"getByDisplayValue": [Function],
4561
"getByLabelText": [Function],
4662
"getByPlaceholderText": [Function],
4763
"getByRole": [Function],
48-
"getBySelectText": [Function],
4964
"getByTestId": [Function],
5065
"getByText": [Function],
5166
"getByTitle": [Function],
52-
"getByValue": [Function],
5367
"queryAllByAltText": [Function],
68+
"queryAllByDisplayValue": [Function],
5469
"queryAllByLabelText": [Function],
5570
"queryAllByPlaceholderText": [Function],
5671
"queryAllByRole": [Function],
57-
"queryAllBySelectText": [Function],
5872
"queryAllByTestId": [Function],
5973
"queryAllByText": [Function],
6074
"queryAllByTitle": [Function],
61-
"queryAllByValue": [Function],
6275
"queryByAltText": [Function],
76+
"queryByDisplayValue": [Function],
6377
"queryByLabelText": [Function],
6478
"queryByPlaceholderText": [Function],
6579
"queryByRole": [Function],
66-
"queryBySelectText": [Function],
6780
"queryByTestId": [Function],
6881
"queryByText": [Function],
6982
"queryByTitle": [Function],
70-
"queryByValue": [Function],
7183
"rerender": [Function],
7284
"unmount": [Function],
7385
}

yarn.lock

Lines changed: 97 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
dependencies:
9999
"@babel/helper-plugin-utils" "^7.0.0"
100100

101-
"@babel/runtime@^7.3.4":
102-
version "7.4.3"
103-
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.3.tgz#79888e452034223ad9609187a0ad1fe0d2ad4bdc"
104-
integrity sha512-9lsJwJLxDh/T3Q3SZszfWOTkk3pHbkmH+3KY+zwIDmsNlxsumuhS2TH3NIpktU4kNvfzy+k3eLT7aTJSPTo0OA==
101+
"@babel/runtime@^7.4.5":
102+
version "7.5.0"
103+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.0.tgz#49dcbcd637099a55d3a61e590a00d6861393b1b5"
104+
integrity sha512-2xsuyZ0R0RBFwjgae5NpXk8FcfH4qovj5cEM5VEeB7KXnKqzaisIu2HSV/mCEISolJJuR4wkViUGYujA8MH9tw==
105105
dependencies:
106106
regenerator-runtime "^0.13.2"
107107

@@ -297,6 +297,15 @@
297297
"@types/istanbul-lib-coverage" "^2.0.0"
298298
"@types/yargs" "^12.0.9"
299299

300+
"@jest/types@^24.8.0":
301+
version "24.8.0"
302+
resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz#f31e25948c58f0abd8c845ae26fcea1491dea7ad"
303+
integrity sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==
304+
dependencies:
305+
"@types/istanbul-lib-coverage" "^2.0.0"
306+
"@types/istanbul-reports" "^1.1.1"
307+
"@types/yargs" "^12.0.9"
308+
300309
"@sheerun/mutationobserver-shim@^0.3.2":
301310
version "0.3.2"
302311
resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#8013f2af54a2b7d735f71560ff360d3a8176a87b"
@@ -314,6 +323,36 @@
314323
dependencies:
315324
defer-to-connect "^1.0.1"
316325

326+
"@testing-library/dom@^5.0.0":
327+
version "5.5.0"
328+
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-5.5.0.tgz#7c5024116ca8173187b52c538648884ac6b7b2f9"
329+
integrity sha512-QuY/XBp9fquYXP1jklKlG0nUmFVLJXLWNYANmoFs25RDystdujLXxXSVhacVqL5oIF8ESThBzHFX1FUuV/J0kw==
330+
dependencies:
331+
"@babel/runtime" "^7.4.5"
332+
"@sheerun/mutationobserver-shim" "^0.3.2"
333+
aria-query "3.0.0"
334+
pretty-format "^24.8.0"
335+
wait-for-expect "^1.2.0"
336+
337+
"@testing-library/dom@^5.6.0":
338+
version "5.6.0"
339+
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-5.6.0.tgz#18a7c162a6a79964e731ad7b810022a28218047c"
340+
integrity sha512-nAsRvQLr/b6TGNjuHMEbWXCNPLrQYnzqa/KKQZL7wBOtfptUxsa4Ah9aqkHW0ZmCSFmUDj4nFUxWPVTeMu0iCw==
341+
dependencies:
342+
"@babel/runtime" "^7.4.5"
343+
"@sheerun/mutationobserver-shim" "^0.3.2"
344+
aria-query "3.0.0"
345+
pretty-format "^24.8.0"
346+
wait-for-expect "^1.2.0"
347+
348+
"@testing-library/react@^8.0.4":
349+
version "8.0.4"
350+
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-8.0.4.tgz#6ed405ba88b625ec53d7cfa78c038a950bafc1fa"
351+
integrity sha512-omm4D00Z0aMaWfPRRP4X6zIaOVb0Kf1Yc1H5VE4id9D0pQRiBcTtmjbN0kZgT8rQGxHhVAuv1NuwFwMTwKzFqg==
352+
dependencies:
353+
"@babel/runtime" "^7.4.5"
354+
"@testing-library/dom" "^5.0.0"
355+
317356
"@types/babel__core@^7.1.0":
318357
version "7.1.1"
319358
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.1.tgz#ce9a9e5d92b7031421e1d0d74ae59f572ba48be6"
@@ -347,11 +386,31 @@
347386
dependencies:
348387
"@babel/types" "^7.3.0"
349388

389+
"@types/istanbul-lib-coverage@*":
390+
version "2.0.1"
391+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff"
392+
integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==
393+
350394
"@types/istanbul-lib-coverage@^2.0.0":
351395
version "2.0.0"
352396
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.0.tgz#1eb8c033e98cf4e1a4cedcaf8bcafe8cb7591e85"
353397
integrity sha512-eAtOAFZefEnfJiRFQBGw1eYqa5GTLCZ1y86N0XSI/D6EB+E8z6VPV/UL7Gi5UEclFqoQk+6NRqEDsfmDLXn8sg==
354398

399+
"@types/istanbul-lib-report@*":
400+
version "1.1.1"
401+
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c"
402+
integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==
403+
dependencies:
404+
"@types/istanbul-lib-coverage" "*"
405+
406+
"@types/istanbul-reports@^1.1.1":
407+
version "1.1.1"
408+
resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a"
409+
integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==
410+
dependencies:
411+
"@types/istanbul-lib-coverage" "*"
412+
"@types/istanbul-lib-report" "*"
413+
355414
"@types/stack-utils@^1.0.1":
356415
version "1.0.1"
357416
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
@@ -474,6 +533,14 @@ argparse@^1.0.7:
474533
dependencies:
475534
sprintf-js "~1.0.2"
476535

536+
537+
version "3.0.0"
538+
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"
539+
integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=
540+
dependencies:
541+
ast-types-flow "0.0.7"
542+
commander "^2.11.0"
543+
477544
arr-diff@^4.0.0:
478545
version "4.0.0"
479546
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
@@ -529,6 +596,11 @@ assign-symbols@^1.0.0:
529596
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
530597
integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
531598

599+
600+
version "0.0.7"
601+
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
602+
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
603+
532604
astral-regex@^1.0.0:
533605
version "1.0.0"
534606
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
@@ -664,12 +736,12 @@ browser-resolve@^1.11.3:
664736
dependencies:
665737
resolve "1.1.7"
666738

667-
bs-dom-testing-library@^0.4.1:
668-
version "0.4.1"
669-
resolved "https://registry.yarnpkg.com/bs-dom-testing-library/-/bs-dom-testing-library-0.4.1.tgz#46fd1fea65465edd799f1e7dd1596a633ef44b05"
670-
integrity sha512-UxpDl6Ain7ZvjieWFeeJZjmcaZOVe8KAKo9Olnji1kF5ne2w9x+b8AzSC0z20OKhpP3/SiiAuRnGNiO81NqI6A==
739+
bs-dom-testing-library@^0.5.0:
740+
version "0.5.0"
741+
resolved "https://registry.yarnpkg.com/bs-dom-testing-library/-/bs-dom-testing-library-0.5.0.tgz#1f3ba6b5c8c5842745e1caa8762dcf254d282b82"
742+
integrity sha512-gSxTJKEDWpwL6lobI9NzgEcuJhyngqBMZIbPhGL8zRL4jh1pTvjsdlqODKPu8rrKXS8KRWGT2JnB56BA5ME1eg==
671743
dependencies:
672-
dom-testing-library "^3.19.0"
744+
"@testing-library/dom" "^5.6.0"
673745

674746
bs-platform@^5.0.3:
675747
version "5.0.3"
@@ -834,7 +906,7 @@ [email protected], combined-stream@~1.0.5:
834906
dependencies:
835907
delayed-stream "~1.0.0"
836908

837-
commander@~2.20.0:
909+
commander@^2.11.0, commander@~2.20.0:
838910
version "2.20.0"
839911
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
840912
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
@@ -1028,25 +1100,6 @@ diff-sequences@^24.3.0:
10281100
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
10291101
integrity sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==
10301102

1031-
dom-testing-library@^3.19.0:
1032-
version "3.19.3"
1033-
resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.19.3.tgz#fba399987be1bdd57b07c4bc3ef46c3c084b26d9"
1034-
integrity sha512-oiI+oq91iO/Vpp+pt8PqfqLfBK074FH0eprhoFNvBCvJOk7vL4ozbe/yj/kEEGR6kiT4F3MAam19AX1fdGFjrA==
1035-
dependencies:
1036-
"@babel/runtime" "^7.3.4"
1037-
"@sheerun/mutationobserver-shim" "^0.3.2"
1038-
pretty-format "^24.5.0"
1039-
wait-for-expect "^1.1.0"
1040-
1041-
dom-testing-library@^3.8.1:
1042-
version "3.8.4"
1043-
resolved "https://registry.yarnpkg.com/dom-testing-library/-/dom-testing-library-3.8.4.tgz#4b0aa5f305225801aa31803b1f42fc405097235d"
1044-
integrity sha512-3RZQuTVGlE0gaxwJILnOIoxUmMZo7pSUp1owX1wPC/Hk6VuhxMcVlAS0dFRNffeR19O2XwD4bv9U0onoj1/4iA==
1045-
dependencies:
1046-
mutationobserver-shim "^0.3.2"
1047-
pretty-format "^23.6.0"
1048-
wait-for-expect "^1.0.0"
1049-
10501103
domexception@^1.0.0:
10511104
version "1.0.1"
10521105
resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
@@ -2674,11 +2727,6 @@ ms@^2.1.1:
26742727
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
26752728
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
26762729

2677-
mutationobserver-shim@^0.3.2:
2678-
version "0.3.2"
2679-
resolved "https://registry.yarnpkg.com/mutationobserver-shim/-/mutationobserver-shim-0.3.2.tgz#f4d5dae7a4971a2207914fb5a90ebd514b65acca"
2680-
integrity sha1-9NXa56SXGiIHkU+1qQ69UUtlrMo=
2681-
26822730
nan@^2.12.1:
26832731
version "2.13.2"
26842732
resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.2.tgz#f51dc7ae66ba7d5d55e1e6d4d8092e802c9aefe7"
@@ -3114,15 +3162,7 @@ prepend-http@^2.0.0:
31143162
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
31153163
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
31163164

3117-
pretty-format@^23.6.0:
3118-
version "23.6.0"
3119-
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"
3120-
integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==
3121-
dependencies:
3122-
ansi-regex "^3.0.0"
3123-
ansi-styles "^3.2.0"
3124-
3125-
pretty-format@^24.5.0, pretty-format@^24.7.0:
3165+
pretty-format@^24.7.0:
31263166
version "24.7.0"
31273167
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.7.0.tgz#d23106bc2edcd776079c2daa5da02bcb12ed0c10"
31283168
integrity sha512-apen5cjf/U4dj7tHetpC7UEFCvtAgnNZnBDkfPv3fokzIqyOJckAG9OlAPC1BlFALnqT/lGB2tl9EJjlK6eCsA==
@@ -3132,6 +3172,16 @@ pretty-format@^24.5.0, pretty-format@^24.7.0:
31323172
ansi-styles "^3.2.0"
31333173
react-is "^16.8.4"
31343174

3175+
pretty-format@^24.8.0:
3176+
version "24.8.0"
3177+
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2"
3178+
integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==
3179+
dependencies:
3180+
"@jest/types" "^24.8.0"
3181+
ansi-regex "^4.0.0"
3182+
ansi-styles "^3.2.0"
3183+
react-is "^16.8.4"
3184+
31353185
process-nextick-args@~2.0.0:
31363186
version "2.0.0"
31373187
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
@@ -3201,14 +3251,6 @@ react-is@^16.8.4:
32013251
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16"
32023252
integrity sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==
32033253

3204-
react-testing-library@^5.2.0:
3205-
version "5.2.0"
3206-
resolved "https://registry.yarnpkg.com/react-testing-library/-/react-testing-library-5.2.0.tgz#d7af9b0e6d1b653287d8c06cd0eab9e6d5d645ba"
3207-
integrity sha512-H0V3uM4dpxi/4Hy8nRwrT4i38hYLlyr5oIpUyzk6U1++NOP6XVYmuG8y8xoDsvxb8olN/iTLQzg2SWphR+uvyQ==
3208-
dependencies:
3209-
dom-testing-library "^3.8.1"
3210-
wait-for-expect "^1.0.0"
3211-
32123254
react@>=16.8.1, react@^16.8.6:
32133255
version "16.8.6"
32143256
resolved "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz#ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe"
@@ -3986,15 +4028,10 @@ w3c-hr-time@^1.0.1:
39864028
dependencies:
39874029
browser-process-hrtime "^0.1.2"
39884030

3989-
wait-for-expect@^1.0.0:
3990-
version "1.0.0"
3991-
resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.0.0.tgz#edf2d5790c36dc67c4e21ac6ccedd7d4b79dc6ac"
3992-
integrity sha512-I6OlPKnd4qVdKJf1Gjx9M9qQjIk29rALoUkjwIKa9pNDCdzUuJTfaNv1mtsm2QdSvF0ZQogrWJMifTN1lUeXig==
3993-
3994-
wait-for-expect@^1.1.0:
3995-
version "1.1.1"
3996-
resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.1.1.tgz#9cd10e07d52810af9e0aaf509872e38f3c3d81ae"
3997-
integrity sha512-vd9JOqqEcBbCDhARWhW85ecjaEcfBLuXgVBqatfS3iw6oU4kzAcs+sCNjF+TC9YHPImCW7ypsuQc+htscIAQCw==
4031+
wait-for-expect@^1.2.0:
4032+
version "1.2.0"
4033+
resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-1.2.0.tgz#fdab6a26e87d2039101db88bff3d8158e5c3e13f"
4034+
integrity sha512-EJhKpA+5UHixduMBEGhTFuLuVgQBKWxkFbefOdj2bbk2/OpA5Opsc4aUTGmF+qJ+v3kTGxDRNYwKaT4j6g5n8Q==
39984035

39994036
walker@^1.0.7, walker@~1.0.5:
40004037
version "1.0.7"

0 commit comments

Comments
 (0)