remove leftover debugger statement

This commit is contained in:
Thomas Walpole 2018-03-13 13:54:30 -07:00
parent 353ef5a121
commit e6e132ca63
2 changed files with 1 additions and 2 deletions

View File

@ -9,7 +9,6 @@ $(function() {
}
});
$('#clickable').click(function(e) {
debugger;
var link = $(this);
setTimeout(function() {
$(link).after('<a id="has-been-clicked" href="#">Has been clicked</a>');

View File

@ -321,7 +321,7 @@ Capybara::SpecHelper.spec '#has_no_text?' do
it "should not find element if it appears after given wait duration" do
@session.visit('/with_js')
@session.click_link('Click me')
expect(@session).to have_no_text('Has been clicked', wait: 0.1)
expect(@session).to have_no_text('Has been clicked', wait: 0.05)
end
end
end