8000 Axes ref cleanup by etpinard · Pull Request #1431 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

Axes ref cleanup #1431

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 10 commits into from
Mar 2, 2017
Next Next commit
add extra karma config
- to show console.log in terminal in karma ^1.5.0
- See karma-runner/karma@89a7a1c#commitcomment-21009216
  • Loading branch information
etpinard committed Mar 1, 2017
commit 170090812f8f2c92128be3e5ef1b430b662e0b24
8 changes: 8 additions & 0 deletions test/jasmine/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ function func(config) {
// See CONTRIBUTING.md for additional notes on reporting.
func.defaultConfig.logLevel = config.LOG_INFO;

// without this, console logs in the plotly.js code don't print to
// the terminal since karma v1.5.0
//
// See https://github.com/karma-runner/karma/commit/89a7a1c#commitcomment-21009216
func.defaultConfig.browserConsoleLogOptions = {
level: 'log'
};
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh awesome - that'll be super helpful.


config.set(func.defaultConfig);
}

Expand Down
0