2020-11-23 18:21:51 +00:00
|
|
|
describe('delete keystroke', function () {
|
|
|
|
// create a new pad before each test run
|
|
|
|
beforeEach(function (cb) {
|
2012-10-06 21:38:49 +00:00
|
|
|
helper.newPad(cb);
|
2012-11-01 23:19:59 +00:00
|
|
|
this.timeout(60000);
|
2012-10-03 19:57:04 +00:00
|
|
|
});
|
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
it('makes text delete', function (done) {
|
|
|
|
const inner$ = helper.padInner$;
|
|
|
|
const chrome$ = helper.padChrome$;
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// get the first text element out of the inner iframe
|
|
|
|
const $firstTextElement = inner$('div').first();
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2012-10-03 19:57:04 +00:00
|
|
|
// get the original length of this element
|
2020-11-23 18:21:51 +00:00
|
|
|
const elementLength = $firstTextElement.text().length;
|
2012-10-03 19:57:04 +00:00
|
|
|
|
2012-10-03 20:25:31 +00:00
|
|
|
// get the original string value minus the last char
|
2020-11-23 18:21:51 +00:00
|
|
|
const originalTextValue = $firstTextElement.text();
|
|
|
|
const originalTextValueMinusFirstChar = originalTextValue.substring(1, originalTextValue.length);
|
2012-10-03 19:57:04 +00:00
|
|
|
|
2012-10-03 20:25:31 +00:00
|
|
|
// simulate key presses to delete content
|
2012-10-06 21:38:49 +00:00
|
|
|
$firstTextElement.sendkeys('{leftarrow}'); // simulate a keypress of the left arrow key
|
|
|
|
$firstTextElement.sendkeys('{del}'); // simulate a keypress of delete
|
2012-10-03 19:57:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// ace creates a new dom element when you press a keystroke, so just get the first text element again
|
|
|
|
const $newFirstTextElement = inner$('div').first();
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2012-10-03 19:57:04 +00:00
|
|
|
// get the new length of this element
|
2020-11-23 18:21:51 +00:00
|
|
|
const newElementLength = $newFirstTextElement.text().length;
|
2012-10-03 19:57:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// expect it to be one char less in length
|
|
|
|
expect(newElementLength).to.be((elementLength - 1));
|
2012-10-03 19:57:04 +00:00
|
|
|
|
2012-10-07 22:34:29 +00:00
|
|
|
done();
|
2012-10-03 19:57:04 +00:00
|
|
|
});
|
|
|
|
});
|