corbado / javascript

MIT License
6 stars 1 forks source link

fix corrupted trace file generation #280

Closed aehnh closed 1 month ago

aehnh commented 1 month ago

Apparently creating blobs in ./playwright-report and then merging them into the same directory (./playwright-report) will generate corrupt trace files.

Solution was to use one directory for blob generation (./blob-report), and a separate directory for merging reports (./playwright-report), after which trace files will be usable

Also turned on trace files for all failed tests (originally only for 1st retry).