2012-10-02 01:35:43 +02:00
|
|
|
describe("bold button", function(){
|
|
|
|
//create a new pad before each test run
|
|
|
|
beforeEach(function(cb){
|
2012-10-06 21:29:37 +02:00
|
|
|
this.timeout(5000);
|
|
|
|
helper.newPad(cb);
|
2012-10-02 01:35:43 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("makes text bold", function() {
|
2012-10-06 21:29:37 +02:00
|
|
|
var inner$ = helper.jQueryOf("inner");
|
|
|
|
var chrome$ = helper.jQueryOf("chrome");
|
|
|
|
|
2012-10-02 01:35:43 +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();
|
2012-10-02 01:35:43 +02:00
|
|
|
|
|
|
|
//select this text element
|
2012-10-06 21:29:37 +02:00
|
|
|
$firstTextElement.sendkeys('{selectall}');
|
2012-10-02 01:35:43 +02:00
|
|
|
|
|
|
|
//get the bold button and click it
|
2012-10-06 21:29:37 +02:00
|
|
|
var $boldButton = chrome$(".buttonicon-bold");
|
2012-10-02 01:35:43 +02:00
|
|
|
$boldButton.click();
|
2012-10-06 21:29:37 +02:00
|
|
|
|
2012-10-02 01:35:43 +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();
|
2012-10-02 01:35:43 +02:00
|
|
|
|
|
|
|
// is there a <b> element now?
|
2012-10-06 21:29:37 +02:00
|
|
|
var isBold = $newFirstTextElement.find("b").length === 1;
|
2012-10-02 01:35:43 +02:00
|
|
|
|
|
|
|
//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());
|
2012-10-02 01:35:43 +02:00
|
|
|
});
|
|
|
|
});
|