File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -565,11 +565,17 @@ describe('Error handling', () => {
565
565
} ) ;
566
566
567
567
describe ( 'penumbra.saveZip() error handling' , ( ) => {
568
+ // Need to add user agent to make logs unique across browsers, else they get combined
568
569
before ( ( ) => {
569
- logger . warn ( '[TEST] beginning of expected error messages' ) ;
570
+ logger . warn (
571
+ `[TEST] beginning of expected error messages, ${ navigator . userAgent } ` ,
572
+ ) ;
570
573
} ) ;
571
574
after ( ( ) => {
572
- logger . warn ( '[TEST] end of expected error messages' ) ;
575
+ // FYI, Firefox seems to log a bit after this message...
576
+ logger . warn (
577
+ `[TEST] end of expected error messages, ${ navigator . userAgent } ` ,
578
+ ) ;
573
579
} ) ;
574
580
575
581
it ( 'should throw error when file has no path or filePrefix' , async ( ) => {
You can’t perform that action at this time.
0 commit comments