Skip to content

Commit 1ca970d

Browse files
dependabot[bot]phyrog
authored andcommitted
Bump react-scripts from 1.0.14 to 1.0.16 (#182)
* Bump react-scripts from 1.0.14 to 1.0.16 Bumps [react-scripts](https://github.com/facebookincubator/create-react-app) from 1.0.14 to 1.0.16. - [Release notes](https://github.com/facebookincubator/create-react-app/releases) - [Changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG-0.x.md) - [Commits](https://github.com/facebookincubator/create-react-app/compare/[email protected]) * Remove animation frame mocks * Update snapshots * Update to react-scripts 1.0.17
1 parent 9ec2742 commit 1ca970d

File tree

6 files changed

+384
-806
lines changed

6 files changed

+384
-806
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"enzyme-to-json": "^3.2.0",
3232
"eslint": "^4.10.0",
3333
"prettier": "1.7.4",
34-
"react-scripts": "1.0.14",
34+
"react-scripts": "1.0.17",
3535
"react-test-renderer": "^16.0.0",
3636
"serve": "^6.4.0"
3737
},

src/components/__tests__/__snapshots__/LoginModal.test.js.snap

-2
Original file line numberDiff line numberDiff line change
@@ -270,15 +270,13 @@ exports[`LoginModal matches the snapshot 1`] = `
270270
>
271271
<button
272272
className="ui primary button"
273-
disabled={undefined}
274273
id="login-modal-sign-in-button"
275274
onBlur={[Function]}
276275
onClick={[Function]}
277276
onFocus={[Function]}
278277
onMouseEnter={[Function]}
279278
onMouseLeave={[Function]}
280279
role="button"
281-
tabIndex={undefined}
282280
>
283281
<Icon
284282
as="i"

src/components/__tests__/__snapshots__/SignInForm.test.js.snap

-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ exports[`SignInForm onSubmit error matches the snapshot 1`] = `
6262
onSubmit={[Function]}
6363
>
6464
<form
65-
action={undefined}
6665
className="ui error form"
6766
onSubmit={[Function]}
6867
>
@@ -158,11 +157,9 @@ exports[`SignInForm onSubmit error matches the snapshot 1`] = `
158157
>
159158
<button
160159
className="ui primary right floated button"
161-
disabled={undefined}
162160
id="sign-in-form-sign-in-button"
163161
onClick={[Function]}
164162
role="button"
165-
tabIndex={undefined}
166163
type="submit"
167164
>
168165
<Icon

src/components/__tests__/__snapshots__/SignUpForm.test.js.snap

-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ exports[`SignUpForm onSubmit error matches the snapshot 1`] = `
120120
onSubmit={[Function]}
121121
>
122122
<form
123-
action={undefined}
124123
className="ui form"
125124
onChange={[Function]}
126125
onSubmit={[Function]}
@@ -330,10 +329,8 @@ exports[`SignUpForm onSubmit error matches the snapshot 1`] = `
330329
>
331330
<button
332331
className="ui basic secondary right floated button"
333-
disabled={undefined}
334332
onClick={[Function]}
335333
role="button"
336-
tabIndex={undefined}
337334
type="submit"
338335
>
339336
<Icon

src/setupTests.js

-6
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,3 @@ import serializer from "enzyme-to-json/serializer";
55
configure({ adapter: new Adapter() });
66

77
expect.addSnapshotSerializer(serializer);
8-
9-
global.requestAnimationFrame = function(callback) {
10-
setTimeout(callback, 0);
11-
};
12-
13-
global.cancelAnimationFrame = function(callback) {};

0 commit comments

Comments
 (0)