Skip to content

Commit 2bb2b7d

Browse files
committedJul 30, 2020
rm yarn.lock update tests minor
1 parent 784397f commit 2bb2b7d

File tree

4 files changed

+674
-11840
lines changed

4 files changed

+674
-11840
lines changed
 

‎package-lock.json

+666-859
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@
6060
"publishConfig": {
6161
"registry": "https://npm.pkg.github.com/"
6262
}
63-
}
63+
}

‎src/__tests__/__snapshots__/component.test.tsx.snap

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`Inline Input edit component. should render a default "Click to edit" label when no text prop or labelPlaceHolder prop is provided. 1`] = `
3+
exports[`Inline input edit component should render a default "Click to edit" label when no text prop or labelPlaceHolder prop is provided. 1`] = `
44
<label
55
data-testid="label-component"
66
onClick={[Function]}
@@ -16,7 +16,7 @@ exports[`Inline Input edit component. should render a default "Click to edit" la
1616
</label>
1717
`;
1818

19-
exports[`Inline Input edit component. should render a label when a labelPlaceHolder prop is provided. 1`] = `
19+
exports[`Inline input edit component should render a label when a labelPlaceHolder prop is provided. 1`] = `
2020
<label
2121
data-testid="label-component"
2222
onClick={[Function]}
@@ -32,7 +32,7 @@ exports[`Inline Input edit component. should render a label when a labelPlaceHol
3232
</label>
3333
`;
3434

35-
exports[`Inline Input edit component. should render a text label given a text prop. 1`] = `
35+
exports[`Inline input edit component should render a text label given a text prop. 1`] = `
3636
<label
3737
data-testid="label-component"
3838
onClick={[Function]}
@@ -48,7 +48,7 @@ exports[`Inline Input edit component. should render a text label given a text pr
4848
</label>
4949
`;
5050

51-
exports[`Inline Input edit component. should render an input when label is clicked, and should update label with new input text. 1`] = `
51+
exports[`Inline input edit component should render an input when label is clicked, and should update label with new input text. 1`] = `
5252
<DocumentFragment>
5353
<input
5454
data-testid="input-component"
@@ -58,7 +58,7 @@ exports[`Inline Input edit component. should render an input when label is click
5858
</DocumentFragment>
5959
`;
6060

61-
exports[`Inline Input edit component. should render an input when label is clicked, and should update label with new input text. 2`] = `
61+
exports[`Inline input edit component should render an input when label is clicked, and should update label with new input text. 2`] = `
6262
<DocumentFragment>
6363
<label
6464
data-testid="label-component"
@@ -69,7 +69,7 @@ exports[`Inline Input edit component. should render an input when label is click
6969
</DocumentFragment>
7070
`;
7171

72-
exports[`Inline Input edit component. should render optional props provided by user. 1`] = `
72+
exports[`Inline input edit component should render optional props provided by user. 1`] = `
7373
<DocumentFragment>
7474
<label
7575
class="red"
@@ -81,7 +81,7 @@ exports[`Inline Input edit component. should render optional props provided by u
8181
</DocumentFragment>
8282
`;
8383

84-
exports[`Inline Input edit component. should render optional props provided by user. 2`] = `
84+
exports[`Inline input edit component should render optional props provided by user. 2`] = `
8585
<DocumentFragment>
8686
<input
8787
class="the-one"

‎yarn.lock

-10,973
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.