mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 16:36:15 -04:00
more realistic timeouts for slower devices
This commit is contained in:
parent
5d276944a8
commit
55ac85473c
3 changed files with 5 additions and 5 deletions
|
@ -8,7 +8,7 @@ describe('italic some text', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('makes text italic using button', function (done) {
|
it('makes text italic using button', function (done) {
|
||||||
this.timeout(50);
|
this.timeout(100);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
const chrome$ = helper.padChrome$;
|
const chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ describe('italic some text', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('makes text italic using keypress', function (done) {
|
it('makes text italic using keypress', function (done) {
|
||||||
this.timeout(50);
|
this.timeout(100);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
|
|
||||||
// get the first text element out of the inner iframe
|
// get the first text element out of the inner iframe
|
||||||
|
|
|
@ -164,7 +164,7 @@ describe('Pressing indent/outdent button in an OL increases and decreases indent
|
||||||
});
|
});
|
||||||
|
|
||||||
it('indent and de-indent list item with indent button', function (done) {
|
it('indent and de-indent list item with indent button', function (done) {
|
||||||
this.timeout(200);
|
this.timeout(1000);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
const chrome$ = helper.padChrome$;
|
const chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ describe('undo button then redo button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('redo some typing with button', function (done) {
|
it('redo some typing with button', function (done) {
|
||||||
this.timeout(100);
|
this.timeout(200);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
const chrome$ = helper.padChrome$;
|
const chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ describe('undo button then redo button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('redo some typing with keypress', function (done) {
|
it('redo some typing with keypress', function (done) {
|
||||||
this.timeout(100);
|
this.timeout(200);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
|
|
||||||
// get the first text element inside the editable space
|
// get the first text element inside the editable space
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue