Advertisement
juanpa_1982

test

Nov 28th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. it("Checking #completed-frameworks is visible", function (done) {
  2.     this.timeout(0); //disable timeout all together
  3.     console.log("HI there!");
  4.     $("#master div.onoffswitch").find("input[data-id='completed-frameworks']").click(function(){
  5.         console.log("Inside click!");
  6.         chai.assert.equal($("#completed-frameworks").is(":visible"), true);
  7.         done();
  8.     });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement