Skip to content

Commit

Permalink
Increase tollerence for slow test environments
Browse files Browse the repository at this point in the history
  • Loading branch information
iarna committed Jun 15, 2016
1 parent 883a8f4 commit 58b5f1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ test('hideCursor:true', function (t) {
theme: ['THEME'],
template: ['TEMPLATE'],
enabled: true,
updateInterval: 10,
updateInterval: 90,
fixedFramerate: true,
hideCursor: true
})
collectResults(11, andCursorHidden)
collectResults(100, andCursorHidden)
gauge.show('NAME', 0.5)
function andCursorHidden (got) {
var expected = [
Expand All @@ -211,11 +211,11 @@ test('hideCursor:false', function (t) {
theme: ['THEME'],
template: ['TEMPLATE'],
enabled: true,
updateInterval: 10,
updateInterval: 90,
fixedFramerate: true,
hideCursor: false
})
collectResults(11, andCursorHidden)
collectResults(100, andCursorHidden)
gauge.show('NAME', 0.5)
function andCursorHidden (got) {
var expected = [
Expand Down

0 comments on commit 58b5f1d

Please sign in to comment.