Skip to content

Commit

Permalink
Closes #26
Browse files Browse the repository at this point in the history
  • Loading branch information
voter101 committed Jul 6, 2015
1 parent 204e7de commit 179fea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/es6/05-Challenge-GroceryList.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("05 - Challenge - Grocery List", () => {
assert.equal(groceryListItems.length, 1, "There should be exactly one element on the groceries list");

let groceryItem = _.first(groceryListItems);
assert.equal(groceryItem.props.children, "Apples", "GroceriesListItem should display a grocery name");
assert.equal(groceryItem.props.children, "Apples", "GroceryItem should render only text inside <li> tag. This text should contain only grocery item name.");
});
});

Expand Down

1 comment on commit 179fea0

@voter101
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should relate #4 too.

Please sign in to comment.