mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 17:06:16 -04:00
more realistic timeouts for slower devices
This commit is contained in:
parent
928f1ef8ce
commit
2816820785
1 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ describe('indentation button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('keeps the indent on enter for the new line', function (done) {
|
it('keeps the indent on enter for the new line', function (done) {
|
||||||
this.timeout(500);
|
this.timeout(800);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
const chrome$ = helper.padChrome$;
|
const chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ describe('indentation button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("indents text with spaces on enter if previous line ends with ':', '[', '(', or '{'", function (done) {
|
it("indents text with spaces on enter if previous line ends with ':', '[', '(', or '{'", function (done) {
|
||||||
this.timeout(500);
|
this.timeout(800);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
|
|
||||||
// type a bit, make a line break and type again
|
// type a bit, make a line break and type again
|
||||||
|
@ -112,7 +112,7 @@ describe('indentation button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("appends indentation to the indent of previous line if previous line ends with ':', '[', '(', or '{'", function (done) {
|
it("appends indentation to the indent of previous line if previous line ends with ':', '[', '(', or '{'", function (done) {
|
||||||
this.timeout(500);
|
this.timeout(800);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
|
|
||||||
// type a bit, make a line break and type again
|
// type a bit, make a line break and type again
|
||||||
|
@ -137,7 +137,7 @@ describe('indentation button', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("issue #2772 shows '*' when multiple indented lines receive a style and are outdented", function (done) {
|
it("issue #2772 shows '*' when multiple indented lines receive a style and are outdented", function (done) {
|
||||||
this.timeout(500);
|
this.timeout(800);
|
||||||
const inner$ = helper.padInner$;
|
const inner$ = helper.padInner$;
|
||||||
const chrome$ = helper.padChrome$;
|
const chrome$ = helper.padChrome$;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue