Skip to content

Commit

Permalink
updated packakge-lock.json file in examples/with-customization for Bu…
Browse files Browse the repository at this point in the history
…lma 0.7.4, test name fixes in examples
  • Loading branch information
dfee committed Feb 9, 2019
1 parent 681e015 commit 72255fd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/with-create-react-app-typescript/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("HelloWorldNotification", () => {
expect(wrapper.text()).toEqual("Welcome to 👟 rbx");
});

it('is renders nothing on "Delete" click', () => {
it('renders nothing on "Delete" click', () => {
const node = <HelloWorldNotification />;
const wrapper = Enzyme.shallow(node);
wrapper.find(Delete).simulate("click");
Expand Down
2 changes: 1 addition & 1 deletion examples/with-create-react-app/src/App.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("HelloWorldNotification", () => {
expect(wrapper.text()).toEqual("Welcome to 👟 rbx");
});

it('is renders nothing on "Delete" click', () => {
it('renders nothing on "Delete" click', () => {
const node = <HelloWorldNotification />;
const wrapper = Enzyme.shallow(node);
wrapper.find(Delete).simulate("click");
Expand Down
6 changes: 3 additions & 3 deletions examples/with-customization/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/with-customization/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe("HelloWorldNotification", () => {
expect(wrapper.text()).toEqual("Welcome to 👟 rbx");
});

it('is renders a message on "Delete" click', () => {
it('renders a message on "Delete" click', () => {
const node = <HelloWorldNotification />;
const wrapper = Enzyme.shallow(node);
wrapper.find(Delete).simulate("click");
Expand Down
2 changes: 2 additions & 0 deletions src/__docs__/etc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ To participate in development, here is the contribution process:
- [ ] `git pull` (updating `master`)
- [ ] `git checkout -b <new-branch>` (create _feature_ or _bug_ branch)
- [ ] implement code changes
- [ ] update documentation as appropriate (using `make docs-dev`)
- [ ] `make test` (for linting, unit tests, etc.)
- [ ] `make examples-test` (for ensuring that the demos still work)
- [ ] `make` (generating updated `size-snapshot.json`)
- [ ] `git add` and `git commit`
- [ ] `git push origin <new-branch>`
Expand Down

0 comments on commit 72255fd

Please sign in to comment.