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

67 lines
1.9 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 on click', function (done) {
const inner$ = helper.padInner$;
const chrome$ = helper.padChrome$;
2012-10-06 21:29:37 +02:00
// get the first text element out of the inner iframe
const $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
const $boldButton = chrome$('.buttonicon-bold');
$boldButton.click();
// ace creates a new dom element when you press a button, so just get the first text element again
const $newFirstTextElement = inner$('div').first();
// is there a <b> element now?
const 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();
});
it('makes text bold on keypress', function (done) {
const inner$ = helper.padInner$;
const chrome$ = helper.padChrome$;
// get the first text element out of the inner iframe
const $firstTextElement = inner$('div').first();
// select this text element
$firstTextElement.sendkeys('{selectall}');
2014-11-28 00:48:14 +01:00
const e = inner$.Event(helper.evtType);
e.ctrlKey = true; // Control key
2013-03-13 19:06:08 +01:00
e.which = 66; // b
inner$('#innerdocbody').trigger(e);
// ace creates a new dom element when you press a button, so just get the first text element again
const $newFirstTextElement = inner$('div').first();
// is there a <b> element now?
const isBold = $newFirstTextElement.find('b').length === 1;
// expect it to be bold
expect(isBold).to.be(true);
// make sure the text hasn't changed
expect($newFirstTextElement.text()).to.eql($firstTextElement.text());
done();
});
});