mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00

* jQuery: Migrate to `.on()`, `.off()`, `.trigger()` This avoids methods that are deprecated in newer versions of jQuery. * jQuery: avoid `.removeAttr`, prefer `.prop` * helper.edit: wait up to 10 seconds for ACCEPT_COMMIT * Chat: disabled attribute is boolean * Chat: avoid inline onclick handler to support jQuery 3.4+ * jQuery: update to version 3.6.0 * Update to 3.7 * Removed deprecated event. * Revert change to focus on padeditor.ace --------- Co-authored-by: webzwo0i <webzwo0i@c3d2.de>
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
describe('strikethrough button', function () {
|
|
// create a new pad before each test run
|
|
beforeEach(async function () {
|
|
await helper.aNewPad();
|
|
});
|
|
|
|
it('makes text strikethrough', async function () {
|
|
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}');
|
|
|
|
// get the strikethrough button and click it
|
|
const $strikethroughButton = chrome$('.buttonicon-strikethrough');
|
|
$strikethroughButton.trigger('click');
|
|
|
|
// ace creates a new dom element when you press a button, just get the first text element again
|
|
const $newFirstTextElement = inner$('div').first();
|
|
|
|
// is there a <i> element now?
|
|
const isstrikethrough = $newFirstTextElement.find('s').length === 1;
|
|
|
|
// expect it to be strikethrough
|
|
expect(isstrikethrough).to.be(true);
|
|
|
|
// make sure the text hasn't changed
|
|
expect($newFirstTextElement.text()).to.eql($firstTextElement.text());
|
|
});
|
|
});
|