AmpersandJS / ampersand

Quickest way to get started with ampersand.
MIT License
812 stars 41 forks source link

Problems with tests #59

Closed mikehedman closed 10 years ago

mikehedman commented 10 years ago

Functional tests stop after the first .log() call.

In functionalTests.js : .waitForVisible('#pages .page') //outdated Replaced with: .waitForVisible('[data-hook="page-container"] .page')

New people not added. .click('button.add') // doesn't work since there's no such button Replaced with: .click('[data-hook="add"]') And then added a button to call randomPerson() when clicked.