Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linkedin#52:  Changed timeout value
  • Loading branch information
SparshithNR committed Jun 27, 2017
1 parent f74a1e5 commit b9ed1d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/headless/specs/intersection-observer.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ testModule('IntersectionObserver', class extends TestClass {
.evaluate(function() {
window.observer.disconnect();
})
.wait(50)
.wait(100)
.evaluate(function() {
window.observer.observe(document.querySelector('.tracked-item[data-id="1"]'));
})
Expand Down
2 changes: 1 addition & 1 deletion test/setup/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var runTest = function(threshold, options) {
}
options = options || {};
var thresholds = [threshold];
var timeout = 50 + (options.timeout || 0);
var timeout = 100 + (options.timeout || 0);
var entries = [];
var target = options.target || document.createElement('div');
target.style.height = '10px';
Expand Down

0 comments on commit b9ed1d5

Please sign in to comment.