Skip to content

Commit

Permalink
Merge pull request #333 from bruz/master
Browse files Browse the repository at this point in the history
Update scaffold for changes in the TodoMVC app
  • Loading branch information
sethkrasnianski committed Oct 7, 2015
2 parents 5f5dabf + 222720e commit 455ed2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scaffold/simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ module.exports = function(){

this.When(/^I enter \"([^\"]*)\"$/, function(value){
new this.Widget({
root: "#new-todo"
root: ".new-todo"
}).sendKeys(value,'\uE007');
});

this.Then(/^I should see \"([^\"]*)\"$/, function(expected){
var List = this.Widget.List.extend({
root: "#todo-list",
root: ".todo-list",
childSelector: "li"
})

Expand Down

0 comments on commit 455ed2d

Please sign in to comment.