-
-
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
Unit-test: the Last Reporter #2900
Closed
Closed
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
94648c3
Find out what happens if every job posts to Coveralls; rationale: Cov…
ScottFreeCode 5fdc497
Instrumented code will run slower
ScottFreeCode b4efa79
Add browser coverage
ScottFreeCode 2aa9c6a
Try using the same instrumentation as NYC from the Node tests
ScottFreeCode 58e4b5d
Try using browser tests as integration testing for `browser-entry.js`…
ScottFreeCode da7b42d
In prep for browser reporter tests, ensure nothing is missing (css)
ScottFreeCode a9bfeb4
Run browser-only tests of various sorts
ScottFreeCode 02ce4a3
Add HTML reporter tests
ScottFreeCode c055923
Update readme
ScottFreeCode 09429cb
Fix multiple suites problem
ScottFreeCode f50728a
Fix multiple report instances problem (mainly affects Mocha tests rat…
ScottFreeCode 5fcc1b5
Fix various attribute and stacktrace oddities in various browsers
ScottFreeCode 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,9 @@ module.exports = function (config) { | |
// we use the BDD interface for all of the tests that | ||
// aren't interface-specific. | ||
'test/browser-fixtures/bdd.fixture.js', | ||
'test/unit/*.spec.js' | ||
'test/unit/*.spec.js', | ||
'test/browser-unit/*.spec.js', | ||
'test/browser-reporters/*.spec.js' | ||
]), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could put the HTML reporter test in the browser unit folder (it's not like we're planning on adding multiple browser reporters in core), but this is more obvious by parallel of |
||
preprocessors: { | ||
'test/**/*.js': ['browserify'] | ||
|
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.
Planning on filling
test/browser-unit
with tests forlib/browser/*.js
, especially any that don't just end up covered by extension of being used in other tested stuff.