Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b9ed1d5

Browse files
committedJun 27, 2017
linkedin#52: Changed timeout value
1 parent f74a1e5 commit b9ed1d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎test/headless/specs/intersection-observer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ testModule('IntersectionObserver', class extends TestClass {
218218
.evaluate(function() {
219219
window.observer.disconnect();
220220
})
221-
.wait(50)
221+
.wait(100)
222222
.evaluate(function() {
223223
window.observer.observe(document.querySelector('.tracked-item[data-id="1"]'));
224224
})

‎test/setup/environment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var runTest = function(threshold, options) {
1010
}
1111
options = options || {};
1212
var thresholds = [threshold];
13-
var timeout = 50 + (options.timeout || 0);
13+
var timeout = 100 + (options.timeout || 0);
1414
var entries = [];
1515
var target = options.target || document.createElement('div');
1616
target.style.height = '10px';

0 commit comments

Comments
 (0)
Please sign in to comment.