etherpad-lite/tests/frontend/specs/button_bold.js

36 lines
1.0 KiB
JavaScript
Raw Normal View History

describe("bold button", function(){
//create a new pad before each test run
beforeEach(function(cb){
2012-10-06 21:29:37 +02:00
helper.newPad(cb);
2012-11-02 00:19:59 +01:00
this.timeout(60000);
});
it("makes text bold", function(done) {
var inner$ = helper.padInner$;
var chrome$ = helper.padChrome$;
2012-10-06 21:29:37 +02:00
//get the first text element out of the inner iframe
2012-10-06 21:29:37 +02:00
var $firstTextElement = inner$("div").first();
//select this text element
2012-10-06 21:29:37 +02:00
$firstTextElement.sendkeys('{selectall}');
//get the bold button and click it
2012-10-06 21:29:37 +02:00
var $boldButton = chrome$(".buttonicon-bold");
$boldButton.click();
2012-10-06 21:29:37 +02:00
//ace creates a new dom element when you press a button, so just get the first text element again
2012-10-06 21:29:37 +02:00
var $newFirstTextElement = inner$("div").first();
// is there a <b> element now?
2012-10-06 21:29:37 +02:00
var isBold = $newFirstTextElement.find("b").length === 1;
//expect it to be bold
expect(isBold).to.be(true);
//make sure the text hasn't changed
2012-10-06 21:29:37 +02:00
expect($newFirstTextElement.text()).to.eql($firstTextElement.text());
done();
});
});