-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix timeout/slow string values and duplicate arguments #3831
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
'use strict'; | ||
|
||
var runMocha = require('./helpers').runMocha; | ||
|
||
describe('when non-array argument is provided multiple times', function() { | ||
describe('when the same argument name is used', function() { | ||
it('should prefer the last value', function(done) { | ||
runMocha( | ||
'passing-sync', | ||
['--no-async-only', '--async-only', '--no-async-only'], | ||
function(err, result) { | ||
if (err) { | ||
return done(err); | ||
} | ||
expect(result, 'to have passed'); | ||
done(); | ||
} | ||
); | ||
}); | ||
}); | ||
|
||
describe('when a different argument name is used', function() { | ||
it('should prefer the last value', function(done) { | ||
runMocha('passing-async', ['--timeout', '100', '-t', '10'], function( | ||
err, | ||
result | ||
) { | ||
if (err) { | ||
return done(err); | ||
} | ||
expect(result, 'to have failed'); | ||
done(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
'use strict'; | ||
|
||
describe('a suite', function() { | ||
it('should succeed in 500ms', function(done) { | ||
setTimeout(done, 500); | ||
}); | ||
|
||
it('should succeed in 1.5s', function(done) { | ||
setTimeout(done, 1500); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
|
||
describe('a suite', function() { | ||
it('should succeed in 50ms', function(done) { | ||
setTimeout(done, 50); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
'use strict'; | ||
|
||
describe('a suite', function() { | ||
it('should succeed', function() { | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
'use strict'; | ||
|
||
var helpers = require('../helpers'); | ||
var runMochaJSON = helpers.runMochaJSON; | ||
|
||
describe('--timeout', function() { | ||
it('should allow human-readable string value', function(done) { | ||
runMochaJSON('options/slow-test', ['--timeout', '1s'], function(err, res) { | ||
if (err) { | ||
done(err); | ||
return; | ||
} | ||
expect(res, 'to have failed') | ||
.and('to have passed test count', 1) | ||
.and('to have failed test count', 1); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should allow numeric value', function(done) { | ||
runMochaJSON('options/slow-test', ['--timeout', '1000'], function( | ||
err, | ||
res | ||
) { | ||
if (err) { | ||
done(err); | ||
return; | ||
} | ||
expect(res, 'to have failed') | ||
.and('to have passed test count', 1) | ||
.and('to have failed test count', 1); | ||
done(); | ||
}); | ||
}); | ||
|
||
it('should allow multiple values', function(done) { | ||
var fixture = 'options/slow-test'; | ||
runMochaJSON(fixture, ['--timeout', '2s', '--timeout', '1000'], function( | ||
err, | ||
res | ||
) { | ||
if (err) { | ||
done(err); | ||
return; | ||
} | ||
expect(res, 'to have failed') | ||
.and('to have passed test count', 1) | ||
.and('to have failed test count', 1); | ||
done(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Said this before and provided code for it.
This should be run for all arguments expecting a value, not just
--ui
.