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
As noted in #2654 (review) , it would be nice to cover the expected name of [virtual] console methods.
e.g.,
const keysToCheck = new Set([ ...consoleLevelMethods, ...consoleOtherMethods, ...Reflect.ownKeys(console), ]); for (const key of keysToCheck) { const value = console[key]; if (typeof value === 'function') { const expectedName = typeof key === 'symbol' ? `[${key.description}]` : key; t.is(value.name, expectedName, `console.${String(key)}.name`); } }
for the console object returned by use of makeLoggingConsoleKit/makeCausalConsole/filterConsole/etc.
makeLoggingConsoleKit
makeCausalConsole
filterConsole
n/a
Refer to the above design.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the Problem Being Solved?
As noted in #2654 (review) , it would be nice to cover the expected name of [virtual] console methods.
Description of the Design
e.g.,
for the console object returned by use of
makeLoggingConsoleKit
/makeCausalConsole
/filterConsole
/etc.Security Considerations
n/a
Scaling Considerations
n/a
Test Plan
Refer to the above design.
Compatibility Considerations
n/a
Upgrade Considerations
n/a
The text was updated successfully, but these errors were encountered: