Andrew Sefkow

Results 15 comments of Andrew Sefkow

Thanks @rwoll for the information. We're not able to use the environment variable, but I was able to get the Logger API working -- to some extent. The problem is...

Regarding why the environment variable isn't a solution for us ... we have a node script (call it test.js) that processes some command-line arguments (like say, --debug). Then, in that...

Yes, at the top of my file I have ``` import Mocha from 'mocha'; ``` and then further down, I have, effectively: ``` // Instantiate a Mocha instance const mocha...

Thanks for the suggestion and continued help, but we have an ESM environment so my understanding is that we must `import` not `require` the Mocha module.

Appreciate the workaround suggestions ... oddly, while our original code ``` import Mocha from 'mocha'; ``` works fine, replacing that with ``` const Mocha = await import('mocha'); ``` gives ```...

@rwoll just circling back to see if there is any update on this, now that 1.26 was just released. Any chance the extra logger info will make it into 1.27?

Here is a video demo: https://user-images.githubusercontent.com/10245941/191360545-4dbcaf57-e807-4bd9-b66e-2d009c8c22f5.mov

https://user-images.githubusercontent.com/10245941/190692667-799369db-a8a5-46fe-9f2d-3d4eb9636601.mov

I added two more minor accessibility-related changes, both aria-labels on user-navigable elements (the initial/current color swatches, and the input field). An aria-label is read aloud by screen readers but is...