We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Our build system automatically updated to 4.1.4 (semver FTW!) but it looks like some of our reporters are no longer running.
This worked in 4.1.2, but not on 4.1.3. There is no longer any command line output although the chrome runner is running. Config file as follows:
{ "environments": [ "node", "chrome" ], "node": { "suites": "lib/_tests/**/*.js" }, "browser": { "suites": "bundles/_tests/**/*.js" }, "coverage": [ "lib/**/*.js", "!lib/_api/**", "!lib/_tests/**" ], "reporters+": [ { "name": "jsoncoverage", "options": { "filename": "unit_coverage.json", "directory": "coverage" } }, { "name": "junit", "options": { "filename": "junit.xml" } } ] } ``
The text was updated successfully, but these errors were encountered:
It looks like the recent updates to make configuration merging more consistent are causing the default 'runner' reporter to be removed in bin/intern.
A temporary fix is to explicitly add the 'runner' reporter to your config.
Sorry, something went wrong.
Need more integration tests, it seems...
Ack, I'll pin 4.1.2 for now :)
This is being tracked in #970
No branches or pull requests
Hi,
Our build system automatically updated to 4.1.4 (semver FTW!) but it looks like some of our reporters are no longer running.
This worked in 4.1.2, but not on 4.1.3. There is no longer any command line output although the chrome runner is running. Config file as follows:
The text was updated successfully, but these errors were encountered: