Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix typo in counter container test
  • Loading branch information
alucic committed Sep 11, 2015
commit 489968069a076f824f2148be03b55e19cb5d45d4
2 changes: 1 addition & 1 deletion examples/counter/test/containers/App.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('containers', () => {
expect(p.textContent).toMatch(/^Clicked: 1 times/);
});

it('should display updated count after descrement button click', () => {
it('should display updated count after decrement button click', () => {
const { buttons, p } = setup();
TestUtils.Simulate.click(buttons[1]);
expect(p.textContent).toMatch(/^Clicked: -1 times/);
Expand Down