cypress-testing-library icon indicating copy to clipboard operation
cypress-testing-library copied to clipboard

DEBUG_PRINT_LIMIT env var appears to have no effect

Open Joe-Withey opened this issue 3 years ago • 3 comments

  • cypress-testing-library version: @testing-library/cypress: 8.0.2
  • node version: 17.8.0
  • npm (or yarn) version: 8.5.5

Relevant code or config

DEBUG_PRINT_LIMIT=1000000 cypress run

What you did:

Trying to use the DEBUG_PRINT_LIMIT variable in the testing library documentation to show the whole dom when a selector fails.

What happened:

DEBUG_PRINT_LIMIT stayed at the default level

Suggested solution:

Could we check that this library supports the DEBUG_PRINT_LIMIT variable?

Joe-Withey avatar Jul 01 '22 09:07 Joe-Withey

I've noticed the same issue. I also tried with env property inside cypress.config.ts

dhulme avatar Aug 12 '22 16:08 dhulme

Also have noticed this, dumping out the whole DOM isn't incredibly useful for me and this seems to be the only way to limit that DOM output on find failure

avegancafe avatar Oct 11 '22 15:10 avegancafe

If you are using vite with cypress, vite does not automatically compile process.env into your compiled test output. Since in cypress everything, including this lib, is basically compiled and executed in the browser it is subject to your compilers env definitions so I'd guess most likely anyone with this problem probably has an issue in their build compiler settings. You have to do this for vite:

define: {
      "process.env.DEBUG_PRINT_LIMIT": 10000
    }

In vite config

adam-thomas-privitar avatar Nov 04 '22 11:11 adam-thomas-privitar