8000 chore: Bump `brace-expansion` 2.0.2 and adjust noCI test to pass on GH workflow by archmoj · Pull Request #7459 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

chore: Bump brace-expansion 2.0.2 and adjust noCI test to pass on GH workflow #7459

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

Merged
merged 4 commits into from
Jul 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use dots reporter for noCI test run by GitHub actions
  • Loading branch information
archmoj committed Jul 7, 2025
commit 9dfec37a9fbf049fb174fbf07ea5a789e1630a82
4 changes: 4 additions & 0 deletions test/jasmine/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ var hasSpecReporter = reporters.indexOf('spec') !== -1;
if(!hasSpecReporter && argv.showSkipped) reporters.push('spec');
if(argv.verbose) reporters.push('verbose');

if(process.argv.indexOf('--tags=noCI,noCIdep') !== -1) {
reporters = ['dots'];
}

function func(config) {
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
Expand Down
0