tests: remove set timeouts to try fix edge remote tests
parent
3c190c1782
commit
be2ba34d3c
|
@ -47,10 +47,13 @@ describe("clear authorship colors button", function(){
|
||||||
var hasAuthorClass = inner$("div").first().attr("class").indexOf("author") !== -1;
|
var hasAuthorClass = inner$("div").first().attr("class").indexOf("author") !== -1;
|
||||||
expect(hasAuthorClass).to.be(false);
|
expect(hasAuthorClass).to.be(false);
|
||||||
|
|
||||||
setTimeout(function(){
|
helper.waitFor(function(){
|
||||||
|
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
||||||
|
return (disconnectVisible === true)
|
||||||
|
});
|
||||||
|
|
||||||
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
||||||
expect(disconnectVisible).to.be(true);
|
expect(disconnectVisible).to.be(true);
|
||||||
},1000);
|
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
@ -116,11 +119,13 @@ describe("clear authorship colors button", function(){
|
||||||
hasAuthorClass = inner$("div").first().attr("class").indexOf("author") !== -1;
|
hasAuthorClass = inner$("div").first().attr("class").indexOf("author") !== -1;
|
||||||
expect(hasAuthorClass).to.be(false);
|
expect(hasAuthorClass).to.be(false);
|
||||||
|
|
||||||
|
helper.waitFor(function(){
|
||||||
|
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
||||||
|
return (disconnectVisible === true)
|
||||||
|
});
|
||||||
|
|
||||||
setTimeout(function(){
|
|
||||||
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
var disconnectVisible = chrome$("div.disconnected").attr("class").indexOf("visible") === -1
|
||||||
expect(disconnectVisible).to.be(true);
|
expect(disconnectVisible).to.be(true);
|
||||||
},1000);
|
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue