aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/data/testrunner.js2
-rw-r--r--test/unit/event.js10
2 files changed, 4 insertions, 8 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js
index b8f1127ab..d5120c6a0 100644
--- a/test/data/testrunner.js
+++ b/test/data/testrunner.js
@@ -15,7 +15,7 @@ var oldCacheLength = 0,
// Max time for stop() and asyncTest() until it aborts test
// and start()'s the next test.
-QUnit.config.testTimeout = 12e4; // 2 minutes
+QUnit.config.testTimeout = 60e3; // 1 minute
// Enforce an "expect" argument or expect() call in all test bodies.
QUnit.config.requireExpects = true;
diff --git a/test/unit/event.js b/test/unit/event.js
index 8a8a5589e..811922cb4 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -2810,13 +2810,9 @@ QUnit.test( "preventDefault() on focusin does not throw exception", function( as
done();
done = null;
} );
-
- // This test can be unreliable in CI... try two methods to prompt a focusin event
- // and set an abort timeout
input.trigger( "focus" );
- try {
- input[ 0 ].focus();
- } catch ( e ) {}
+
+ // DOM focus is unreliable in TestSwarm CI; set an abort timeout
setTimeout( function() {
if ( !done ) {
return;
@@ -2824,7 +2820,7 @@ QUnit.test( "preventDefault() on focusin does not throw exception", function( as
assert.ok( true, "Did not intercept focusin" );
done();
done = null;
- }, QUnit.config.testTimeout / 2 || 1000 );
+ }, QUnit.config.testTimeout / 4 || 1000 );
} );
QUnit.test( "Donor event interference", function( assert ) {
ue='artonge/fix/skip_blurhash_if_previews_are_disabled'>artonge/fix/skip_blurhash_if_previews_are_disabled Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/security/ihasher.php
blob: 39ba5094b12f0c3eafcc54587fbf5dde7c31475f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65