-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.log
1725 lines (1695 loc) · 342 KB
/
test.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
yarn run v1.22.19
$ npx cross-env DEBUG=cypress:* cypress run
2024-07-17T09:26:23.286Z cypress:cli:cli cli starts with arguments ["C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe","C:\\Workspace\\cypress-audio-context-bug\\node_modules\\cypress\\bin\\cypress","run"]
2024-07-17T09:26:23.287Z cypress:cli NODE_OPTIONS is not set
2024-07-17T09:26:23.288Z cypress:cli:cli program parsing arguments
2024-07-17T09:26:23.290Z cypress:cli:cli running Cypress with args [ Command { _events: [Object: null prototype] { 'option:auto-cancel-after-failures': [Function (anonymous)], 'option:browser': [Function (anonymous)], 'option:ci-build-id': [Function (anonymous)], 'option:component': [Function (anonymous)], 'option:config': [Function (anonymous)], 'option:config-file': [Function (anonymous)], 'option:e2e': [Function (anonymous)], 'option:env': [Function (anonymous)], 'option:group': [Function (anonymous)], 'option:key': [Function (anonymous)], 'option:headed': [Function (anonymous)], 'option:headless': [Function (anonymous)], 'option:no-exit': [Function (anonymous)], 'option:parallel': [Function (anonymous)], 'option:port': [Function (anonymous)], 'option:project': [Function (anonymous)], 'option:quiet': [Function (anonymous)], 'option:record': [Function (anonymous)], 'option:reporter': [Function (anonymous)], 'option:runner-ui': [Function (anonymous)], 'option:no-runner-ui': [Function (anonymous)], 'option:reporter-options': [Function (anonymous)], 'option:spec': [Function (anonymous)], 'option:tag': [Function (anonymous)], 'option:dev': [Function (anonymous)] }, _eventsCount: 25, _maxListeners: undefined, commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], parent: Command { _events: [Object: null prototype], _eventsCount: 1, _maxListeners: undefined, commands: [Array], options: [Array], parent: null, _allowUnknownOption: false, _args: [], rawArgs: [Array], _scriptPath: 'C:\\Workspace\\cypress-audio-context-bug\\node_modules\\cypress\\bin\\cypress', _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _storeOptionsAsPropertiesCalled: true, _passCommandToAction: true, _actionResults: [], _actionHandler: null, _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _combineFlagAndOptionalValue: true, _hidden: false, _hasHelpOption: true, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: undefined, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '<command> [options]', args: [Array], [Symbol(shapeMode)]: false, [Symbol(kCapture)]: false }, _allowUnknownOption: false, _args: [], rawArgs: null, _scriptPath: null, _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _storeOptionsAsPropertiesCalled: false, _passCommandToAction: true, _actionResults: [], _actionHandler: [Function: listener], _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _combineFlagAndOptionalValue: true, _hidden: false, _hasHelpOption: true, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: 0, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, exit: true, args: [], [Symbol(shapeMode)]: false, [Symbol(kCapture)]: false } ]
2024-07-17T09:26:23.410Z cypress:cli:cli variable-length opts parsed { args: [ 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', 'C:\\Workspace\\cypress-audio-context-bug\\node_modules\\cypress\\bin\\cypress', 'run' ], opts: Command { _events: [Object: null prototype] { 'option:auto-cancel-after-failures': [Function (anonymous)], 'option:browser': [Function (anonymous)], 'option:ci-build-id': [Function (anonymous)], 'option:component': [Function (anonymous)], 'option:config': [Function (anonymous)], 'option:config-file': [Function (anonymous)], 'option:e2e': [Function (anonymous)], 'option:env': [Function (anonymous)], 'option:group': [Function (anonymous)], 'option:key': [Function (anonymous)], 'option:headed': [Function (anonymous)], 'option:headless': [Function (anonymous)], 'option:no-exit': [Function (anonymous)], 'option:parallel': [Function (anonymous)], 'option:port': [Function (anonymous)], 'option:project': [Function (anonymous)], 'option:quiet': [Function (anonymous)], 'option:record': [Function (anonymous)], 'option:reporter': [Function (anonymous)], 'option:runner-ui': [Function (anonymous)], 'option:no-runner-ui': [Function (anonymous)], 'option:reporter-options': [Function (anonymous)], 'option:spec': [Function (anonymous)], 'option:tag': [Function (anonymous)], 'option:dev': [Function (anonymous)] }, _eventsCount: 25, _maxListeners: undefined, commands: [], options: [ [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option], [Option] ], parent: Command { _events: [Object: null prototype], _eventsCount: 1, _maxListeners: undefined, commands: [Array], options: [Array], parent: null, _allowUnknownOption: false, _args: [], rawArgs: [Array], _scriptPath: 'C:\\Workspace\\cypress-audio-context-bug\\node_modules\\cypress\\bin\\cypress', _name: 'cypress', _optionValues: {}, _storeOptionsAsProperties: true, _storeOptionsAsPropertiesCalled: true, _passCommandToAction: true, _actionResults: [], _actionHandler: null, _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _combineFlagAndOptionalValue: true, _hidden: false, _hasHelpOption: true, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: undefined, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '<command> [options]', args: [Array], [Symbol(shapeMode)]: false, [Symbol(kCapture)]: false }, _allowUnknownOption: false, _args: [], rawArgs: null, _scriptPath: null, _name: 'run', _optionValues: {}, _storeOptionsAsProperties: true, _storeOptionsAsPropertiesCalled: false, _passCommandToAction: true, _actionResults: [], _actionHandler: [Function: listener], _executableHandler: false, _executableFile: null, _defaultCommandName: null, _exitCallback: null, _aliases: [], _combineFlagAndOptionalValue: true, _hidden: false, _hasHelpOption: true, _helpFlags: '-h, --help', _helpDescription: 'display help for command', _helpShortFlag: '-h', _helpLongFlag: '--help', _hasImplicitHelpCommand: 0, _helpCommandName: 'help', _helpCommandnameAndArgs: 'help [command]', _helpCommandDescription: 'display help for command', _usage: '[options]', _description: 'Runs Cypress tests from the CLI without the GUI', _argsDescription: undefined, exit: true, args: [], [Symbol(shapeMode)]: false, [Symbol(kCapture)]: false } }
2024-07-17T09:26:23.411Z cypress:cli parsed cli options {}
2024-07-17T09:26:23.411Z cypress:cli verifying Cypress app
2024-07-17T09:26:23.412Z cypress:cli checking environment variables
2024-07-17T09:26:23.413Z cypress:cli checking if executable exists C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\Cypress.exe
2024-07-17T09:26:23.415Z cypress:cli Binary is executable? : true
2024-07-17T09:26:23.415Z cypress:cli binaryDir is C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress
2024-07-17T09:26:23.415Z cypress:cli Reading binary package.json from: C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\package.json
2024-07-17T09:26:23.418Z cypress:cli Found binary version 13.13.1 installed in: C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress
2024-07-17T09:26:23.419Z cypress:cli { verified: true }
2024-07-17T09:26:23.419Z cypress:cli is Verified ? true
2024-07-17T09:26:23.419Z cypress:cli:run processing run options { key: null, spec: null, reporter: null, reporterOptions: null, project: 'C:\\Workspace\\cypress-audio-context-bug' }
2024-07-17T09:26:23.420Z cypress:cli:run --key is not set, looking up environment variable CYPRESS_RECORD_KEY
2024-07-17T09:26:23.420Z cypress:cli:run run to spawn.start args ["--run-project","C:\\Workspace\\cypress-audio-context-bug"]
2024-07-17T09:26:23.420Z cypress:cli needs to start own Xvfb? false
2024-07-17T09:26:23.420Z cypress:cli spawning, should retry on display problem? false
2024-07-17T09:26:23.423Z cypress:cli spawn args [ '--', '--run-project', 'C:\\Workspace\\cypress-audio-context-bug', '--cwd', 'C:\\Workspace\\cypress-audio-context-bug', '--userNodePath', 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', '--userNodeVersion', '20.12.1' ] { detached: false, stdio: 'pipe', windowsHide: false }
2024-07-17T09:26:23.423Z cypress:cli spawning Cypress with executable: C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\Cypress.exe
2024-07-17T09:26:23.434Z cypress:cli piping process STDIN into child STDIN
2024-07-17T09:26:23.435Z cypress:cli piping child STDOUT to process STDOUT
2024-07-17T09:26:23.435Z cypress:cli piping child STDERR to process STDERR
2024-07-17T09:26:23.859Z cypress:snapshot:info Caching 3518, defining 4326 modules! Using cache
2024-07-17T09:26:23.860Z cypress:snapshot:debug initializing packherd require
2024-07-17T09:26:23.980Z cypress:server:performance-benchmark elapsed time at v8-snapshot-startup-time: 128.052ms
2024-07-17T09:26:24.079Z cypress:server:appdata path: C:\Users\TMA\AppData\Roaming\Cypress\cy\production\browsers
2024-07-17T09:26:24.081Z cypress:server appending default switches for electron: [
{ name: '--test-type' },
{ name: '--ignore-certificate-errors' },
{ name: '--start-maximized' },
{ name: '--silent-debugger-extension-api' },
{ name: '--no-default-browser-check' },
{ name: '--no-first-run' },
{ name: '--noerrdialogs' },
{ name: '--enable-fixed-layout' },
{ name: '--disable-popup-blocking' },
{ name: '--disable-password-generation' },
{ name: '--disable-single-click-autofill' },
{ name: '--disable-prompt-on-repos' },
{ name: '--disable-background-timer-throttling' },
{ name: '--disable-renderer-backgrounding' },
{ name: '--disable-renderer-throttling' },
{ name: '--disable-backgrounding-occluded-windows' },
{ name: '--disable-restore-session-state' },
{ name: '--disable-new-profile-management' },
{ name: '--disable-new-avatar-menu' },
{ name: '--allow-insecure-localhost' },
{ name: '--reduce-security-for-testing' },
{ name: '--enable-automation' },
{ name: '--disable-print-preview' },
{ name: '--disable-component-extensions-with-background-pages' },
{ name: '--disable-device-discovery-notifications' },
{ name: '--autoplay-policy', value: 'no-user-gesture-required' },
{ name: '--disable-site-isolation-trials' },
{ name: '--metrics-recording-only' },
{ name: '--disable-prompt-on-repost' },
{ name: '--disable-hang-monitor' },
{ name: '--disable-sync' },
{ name: '--disable-web-resources' },
{ name: '--safebrowsing-disable-download-protection' },
{ name: '--disable-client-side-phishing-detection' },
{ name: '--disable-component-update' },
{
name: '--simulate-outdated-no-au',
value: "'Tue, 31 Dec 2099 23:59:59 GMT'"
},
{ name: '--disable-default-apps' },
{
name: '--disable-features',
value: 'Translate,PrivacySandboxSettings4'
},
{ name: '--use-fake-ui-for-media-stream' },
{ name: '--use-fake-device-for-media-stream' },
{ name: '--disable-ipc-flooding-protection' },
{ name: '--disable-backgrounding-occluded-window' },
{ name: '--disable-breakpad' },
{ name: '--password-store', value: 'basic' },
{ name: '--use-mock-keychain' },
{ name: '--disable-dev-shm-usage' },
{ name: '--enable-precise-memory-info' }
]
2024-07-17T09:26:24.082Z cypress:server:cypress starting cypress with argv [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe', '--', '--run-project', 'C:\\Workspace\\cypress-audio-context-bug', '--cwd', 'C:\\Workspace\\cypress-audio-context-bug', '--userNodePath', 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', '--userNodeVersion', '20.12.1' ]
2024-07-17T09:26:24.083Z cypress:server:args argv array: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe', '--run-project', 'C:\\Workspace\\cypress-audio-context-bug', '--cwd', 'C:\\Workspace\\cypress-audio-context-bug', '--userNodePath', 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', '--userNodeVersion', '20.12.1' ]
2024-07-17T09:26:24.084Z cypress:server:args parsed argv options { options: { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], 'run-project': 'C:\\Workspace\\cypress-audio-context-bug', runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1' } }
2024-07-17T09:26:24.086Z cypress:server:args argv parsed: { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true }
2024-07-17T09:26:24.087Z cypress:server:util:proxy found proxy environment variables { npm_config_noproxy: '' }
2024-07-17T09:26:24.090Z cypress:server:util:proxy HTTP_PROXY is falsy, disabling HTTP_PROXY
2024-07-17T09:26:24.090Z cypress:server:util:proxy setting default NO_PROXY of ``
2024-07-17T09:26:24.090Z cypress:server:util:proxy <-loopback> not found, adding localhost to NO_PROXY
2024-07-17T09:26:24.090Z cypress:server:util:proxy normalized proxy environment variables { NO_PROXY: '127.0.0.1,::1,localhost' }
2024-07-17T09:26:24.092Z cypress:server:args options { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {} }
2024-07-17T09:26:24.092Z cypress:server:args argv options: { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug' }
2024-07-17T09:26:24.092Z cypress:server:cypress from argv [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe', '--run-project', 'C:\\Workspace\\cypress-audio-context-bug', '--cwd', 'C:\\Workspace\\cypress-audio-context-bug', '--userNodePath', 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', '--userNodeVersion', '20.12.1' ] got options { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug' }
2024-07-17T09:26:24.092Z cypress:server:cypress scaling electron app in headless mode
2024-07-17T09:26:24.143Z cypress:server:appdata path: C:\Users\TMA\AppData\Roaming\Cypress\cy\production
DevTools listening on ws://127.0.0.1:60757/devtools/browser/effce9f1-0a9b-4894-8b1e-bf2a7104cf7b
2024-07-17T09:26:24.154Z cypress:server:cypress starting in mode run with options { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug' }
2024-07-17T09:26:24.155Z cypress:server:cypress running Electron currently
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudLatestRunUpdateSpecData
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudProjectBySlug
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudProjectsBySlugs
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudSpecByPath
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.cloudViewer
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.pollingIntervals
2024-07-17T09:26:24.259Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for Query.versions
2024-07-17T09:26:24.260Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for CurrentProject.cloudProject
2024-07-17T09:26:24.262Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for RelevantRunInfo.status
2024-07-17T09:26:24.264Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for RemoteFetchableCloudProjectResult.data
2024-07-17T09:26:24.264Z cypress:graphql:nexusDeferIfNotLoadedPlugin Adding nexusDeferIfNotLoadedPlugin for RemoteFetchableCloudProjectSpecResult.data
2024-07-17T09:26:24.309Z cypress:server:browsers:utils getBrowsers
2024-07-17T09:26:24.310Z cypress:launcher:detect detecting if the following browsers are present [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ], minSupportedVersion: 64 }, { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ], minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'beta', displayName: 'Chrome Beta', versionRegex: /Google Chrome (\S+) beta/m, binary: 'google-chrome-beta', minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary', minSupportedVersion: 64 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox', minSupportedVersion: 86, validator: [Function: validator] }, { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ], minSupportedVersion: 86 }, { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ], minSupportedVersion: 86 }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/im, binary: [ 'edge', 'microsoft-edge' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge.+?(\S*(?= canary)|(?<=canary )\S*)/im, binary: [ 'edge-canary', 'microsoft-edge-canary' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge.+?(\S*(?= beta)|(?<=beta )\S*)/im, binary: [ 'edge-beta', 'microsoft-edge-beta' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge.+?(\S*(?= dev)|(?<=dev )\S*)/im, binary: [ 'edge-dev', 'microsoft-edge-dev' ], minSupportedVersion: 79 } ]
2024-07-17T09:26:24.312Z cypress:server:browsers:utils WebKit is enabled, but there was an error constructing the WebKit browser: { err: Error: Cannot find module 'playwright-webkit' Require stack: - C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\packages\server\lib\browsers\utils.ts at node:internal/modules/cjs/loader:1084:15 at Function._resolveFilename (node:electron/js2c/browser_init:2:116118) at resolve (node:internal/modules/cjs/helpers:127:19) at Function.resolve (evalmachine.<anonymous>:1:801904) at q (<embedded>:2792:98016) at Object.I [as getBrowsers] (<embedded>:2792:98851) at b.machineBrowsers (<embedded>:2369:74746) at S._setCurrentProject (<embedded>:2748:66779) at new S (<embedded>:2748:59724) at new E (<embedded>:2748:121247) at P (<embedded>:2883:42712) at s.exports (<embedded>:2883:99439) at <embedded>:2890:3280 at tryCatcher (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\util.js:16:23) at Function.<anonymous> (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\method.js:39:29) at Object.runElectron (<embedded>:2890:3050) at Object.startInMode (<embedded>:2890:5738) at <embedded>:2890:4826 at tryCatcher (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\util.js:16:23) at Promise._settlePromiseFromHandler (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:512:31) at Promise._settlePromise (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:569:18) at Promise._settlePromise0 (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:614:10) at Promise._settlePromises (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:694:18) at Promise._fulfill (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:638:18) at PromiseArray._resolve (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise_array.js:126:19) at PromiseArray._promiseFulfilled (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise_array.js:144:14) at Promise._settlePromise (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:574:26) at Promise._settlePromise0 (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:614:10) at Promise._settlePromises (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:694:18) at Promise._fulfill (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:638:18) at Promise._settlePromise (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:582:21) at Promise._settlePromise0 (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:614:10) at Promise._settlePromises (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:694:18) at Promise._fulfill (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:638:18) at Promise._settlePromise (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:582:21) at Promise._settlePromise0 (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:614:10) at Promise._settlePromises (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:694:18) at Promise._fulfill (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:638:18) at PromiseArray._resolve (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise_array.js:126:19) at PromiseArray._promiseFulfilled (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise_array.js:144:14) at Promise._settlePromise (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:574:26) at Promise._settlePromise0 (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:614:10) at Promise._settlePromises (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:694:18) at Promise._fulfill (C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\promise.js:638:18) at C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\bluebird\js\release\nodeback.js:42:21 at <embedded>:420:121737 { code: 'MODULE_NOT_FOUND', requireStack: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app\\packages\\server\\lib\\browsers\\utils.ts' ] } }
2024-07-17T09:26:24.313Z cypress:data-context:sources:GitDataSource config: { isRunMode: true, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', onError: [Function (anonymous)], onBranchChange: [Function: onBranchChange], onGitInfoChange: [Function: onGitInfoChange], onGitLogChange: [AsyncFunction: onGitLogChange] }
2024-07-17T09:26:24.325Z cypress:scaffold-config:detect Checking for default Cypress config file
2024-07-17T09:26:24.326Z cypress:scaffold-config:detect Detected cypress.config.js - using JS
2024-07-17T09:26:24.355Z cypress:server:video using ffmpeg from C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\@ffmpeg-installer\win32-x64\ffmpeg.exe
2024-07-17T09:26:24.359Z cypress:server:run run start
2024-07-17T09:26:24.375Z cypress:lifecycle:ProjectConfigIpc fork child process { CHILD_PROCESS_FILE_PATH: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app\\node_modules\\@packages\\server\\lib\\plugins\\child\\require_async_child.js', configProcessArgs: [ '--projectRoot', 'C:\\Workspace\\cypress-audio-context-bug', '--file', 'C:\\Workspace\\cypress-audio-context-bug\\cypress.config.js' ], childOptions: { stdio: 'pipe', cwd: 'C:\\Workspace\\cypress-audio-context-bug', execPath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe' } }
2024-07-17T09:26:24.376Z cypress:lifecycle:ProjectConfigIpc no typescript found, just use regular Node.js
2024-07-17T09:26:24.388Z cypress:lifecycle:ProjectConfigIpc trigger the load of the file
2024-07-17T09:26:24.397Z cypress:launcher:windows got version string for chrome: { exePath: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', version: '126.0.6478.127' }
2024-07-17T09:26:24.405Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Google\\chrome-win32\\chrome.exe', exePaths: [], err: Error: Browser not installed: chromium at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.406Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Google\\Chrome Beta\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.407Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Google\\Chrome Beta\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:24.407Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Google\\Chrome SxS\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.408Z cypress:launcher:windows got version string for firefox: { exePath: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', version: '127.0' }
2024-07-17T09:26:24.410Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.410Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:24.410Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:24.412Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.412Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:24.412Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:24.414Z cypress:launcher:windows got version string for edge: { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', version: '126.0.2592.61' }
2024-07-17T09:26:24.414Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Microsoft\\Edge SxS\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.415Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge Beta\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.416Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge Dev\\Application\\msedge.exe', exePaths: [], err: Error: Browser not installed: edge at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:24.416Z cypress:server:browsers:utils found browsers { browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' } ] }
2024-07-17T09:26:24.788Z cypress:lifecycle:child:run_require_async_child:19012 configFile: C:\Workspace\cypress-audio-context-bug\cypress.config.js
2024-07-17T09:26:24.790Z cypress:lifecycle:child:run_require_async_child:19012 projectRoot: C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:24.791Z cypress:lifecycle:child:run_require_async_child:19012 try loading C:\Workspace\cypress-audio-context-bug\cypress.config.js
2024-07-17T09:26:24.791Z cypress:lifecycle:child:run_require_async_child:19012 Loading file C:\Workspace\cypress-audio-context-bug\cypress.config.js
2024-07-17T09:26:25.028Z cypress:cli exporting Cypress module interface
2024-07-17T09:26:25.331Z cypress:lifecycle:child:run_require_async_child:19012 loaded config file C:\Workspace\cypress-audio-context-bug\cypress.config.js
2024-07-17T09:26:25.332Z cypress:lifecycle:ProjectConfigIpc loadConfig:reply
2024-07-17T09:26:25.333Z cypress:lifecycle:ProjectConfigManager config is loaded for file C:\Workspace\cypress-audio-context-bug\cypress.config.js null
2024-07-17T09:26:25.333Z cypress:config:browser validating configuration { e2e: {} }
2024-07-17T09:26:25.334Z cypress:lifecycle:child:run_require_async_child:19012 loaded config from C:\Workspace\cypress-audio-context-bug\cypress.config.js { e2e: {} }
2024-07-17T09:26:25.339Z cypress:config:browser validating configuration {}
2024-07-17T09:26:25.340Z cypress:config:project setting config object { cliConfig: {}, projectName: 'cypress-audio-context-bug', projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', config: { e2e: {} }, envFile: {}, options: { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', socketId: 'fqkyvpac5e', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, testingType: 'e2e', configFile: 'cypress.config.js' }, configFile: 'cypress.config.js' }
2024-07-17T09:26:25.340Z cypress:config:project config is { e2e: {} }
2024-07-17T09:26:25.341Z cypress:config:project:utils merged config with options, got { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, configFile: 'cypress.config.js', morgan: false, isTextTerminal: true, socketId: 'fqkyvpac5e', report: true }
2024-07-17T09:26:25.344Z cypress:config:project:utils using CYPRESS_INTERNAL_ENV production
2024-07-17T09:26:25.344Z cypress:config:project:utils resolved config is { value: [], from: 'default' }
2024-07-17T09:26:25.344Z cypress:config:browser validating configuration {
e2e: { specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}' },
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug',
rawJson: {
e2e: {},
envFile: {},
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug'
},
configFile: 'cypress.config.js',
morgan: false,
isTextTerminal: true,
socketId: 'fqkyvpac5e',
report: true,
animationDistanceThreshold: 5,
arch: 'x64',
baseUrl: null,
blockHosts: null,
chromeWebSecurity: true,
clientCertificates: [],
component: {
specPattern: '**/*.cy.{js,jsx,ts,tsx}',
indexHtmlFile: 'cypress/support/component-index.html'
},
defaultCommandTimeout: 4000,
downloadsFolder: 'cypress/downloads',
env: {},
execTimeout: 60000,
experimentalCspAllowList: false,
experimentalFetchPolyfill: false,
experimentalInteractiveRunEvents: false,
experimentalRunAllSpecs: false,
experimentalMemoryManagement: false,
experimentalModifyObstructiveThirdPartyCode: false,
experimentalSkipDomainInjection: null,
experimentalOriginDependencies: false,
experimentalSourceRewriting: false,
experimentalSingleTabRunMode: false,
experimentalStudio: false,
experimentalWebKitSupport: false,
fileServerFolder: '',
fixturesFolder: 'cypress/fixtures',
excludeSpecPattern: '*.hot-update.js',
includeShadowDom: false,
keystrokeDelay: 0,
modifyObstructiveCode: true,
numTestsKeptInMemory: 0,
platform: 'win32',
pageLoadTimeout: 60000,
port: null,
projectId: null,
redirectionLimit: 20,
reporter: 'spec',
reporterOptions: null,
requestTimeout: 5000,
resolvedNodePath: null,
resolvedNodeVersion: null,
responseTimeout: 30000,
retries: {
runMode: 0,
openMode: 0,
experimentalStrategy: undefined,
experimentalOptions: undefined
},
screenshotOnRunFailure: true,
screenshotsFolder: 'cypress/screenshots',
slowTestThreshold: 10000,
scrollBehavior: 'top',
supportFile: 'cypress/support/e2e.{js,jsx,ts,tsx}',
supportFolder: false,
taskTimeout: 60000,
testIsolation: true,
trashAssetsBeforeRuns: true,
userAgent: null,
video: false,
videoCompression: false,
videosFolder: 'cypress/videos',
viewportHeight: 660,
viewportWidth: 1000,
waitForAnimations: true,
watchForFileChanges: false,
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
additionalIgnorePattern: [],
autoOpen: false,
clientRoute: '/__/',
cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app',
devServerPublicPathRoute: '/__cypress/src',
hosts: null,
isInteractive: true,
namespace: '__cypress',
reporterRoute: '/__cypress/reporter',
socketIoCookie: '__socket',
socketIoRoute: '/__socket',
version: '13.13.1',
protocolEnabled: false,
hideCommandLog: false,
hideRunnerUi: false,
cypressEnv: 'production',
resolved: {
animationDistanceThreshold: { value: 5, from: 'default' },
arch: { value: 'x64', from: 'default' },
baseUrl: { value: null, from: 'default' },
blockHosts: { value: null, from: 'default' },
chromeWebSecurity: { value: true, from: 'default' },
clientCertificates: { value: [], from: 'default' },
component: { value: [Object], from: 'default' },
defaultCommandTimeout: { value: 4000, from: 'default' },
downloadsFolder: { value: 'cypress/downloads', from: 'default' },
e2e: { value: [Object], from: 'default' },
env: {},
execTimeout: { value: 60000, from: 'default' },
experimentalCspAllowList: { value: false, from: 'default' },
experimentalFetchPolyfill: { value: false, from: 'default' },
experimentalInteractiveRunEvents: { value: false, from: 'default' },
experimentalRunAllSpecs: { value: false, from: 'default' },
experimentalMemoryManagement: { value: false, from: 'default' },
experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' },
experimentalSkipDomainInjection: { value: null, from: 'default' },
experimentalOriginDependencies: { value: false, from: 'default' },
experimentalSourceRewriting: { value: false, from: 'default' },
experimentalSingleTabRunMode: { value: false, from: 'default' },
experimentalStudio: { value: false, from: 'default' },
experimentalWebKitSupport: { value: false, from: 'default' },
fileServerFolder: { value: '', from: 'default' },
fixturesFolder: { value: 'cypress/fixtures', from: 'default' },
excludeSpecPattern: { value: '*.hot-update.js', from: 'default' },
includeShadowDom: { value: false, from: 'default' },
keystrokeDelay: { value: 0, from: 'default' },
modifyObstructiveCode: { value: true, from: 'default' },
numTestsKeptInMemory: { value: 0, from: 'config' },
platform: { value: 'win32', from: 'default' },
pageLoadTimeout: { value: 60000, from: 'default' },
port: { value: null, from: 'default' },
projectId: { value: null, from: 'default' },
redirectionLimit: { value: 20, from: 'default' },
reporter: { value: 'spec', from: 'default' },
reporterOptions: { value: null, from: 'default' },
requestTimeout: { value: 5000, from: 'default' },
resolvedNodePath: { value: null, from: 'default' },
resolvedNodeVersion: { value: null, from: 'default' },
responseTimeout: { value: 30000, from: 'default' },
retries: { value: [Object], from: 'default' },
screenshotOnRunFailure: { value: true, from: 'default' },
screenshotsFolder: { value: 'cypress/screenshots', from: 'default' },
slowTestThreshold: { value: 10000, from: 'default' },
scrollBehavior: { value: 'top', from: 'default' },
supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' },
supportFolder: { value: false, from: 'default' },
taskTimeout: { value: 60000, from: 'default' },
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: false, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
viewportHeight: { value: 660, from: 'default' },
viewportWidth: { value: 1000, from: 'default' },
waitForAnimations: { value: true, from: 'default' },
watchForFileChanges: { value: false, from: 'config' },
specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' },
browsers: { value: [], from: 'default' },
hosts: { value: null, from: 'default' },
isInteractive: { value: true, from: 'default' }
}
}
2024-07-17T09:26:25.345Z cypress:server:validation clientCerts: []
2024-07-17T09:26:25.346Z cypress:config:project:utils validate that there is no breaking config options before setupNodeEvents
2024-07-17T09:26:25.346Z cypress:data-context:sources:FileDataSource updating glob patterns to POSIX
2024-07-17T09:26:25.346Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ 'cypress/support/e2e.{js,jsx,ts,tsx}' ]
2024-07-17T09:26:25.346Z cypress:data-context:sources:FileDataSource within directory: C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.356Z cypress:config:project:utils setting support file C:/Workspace/cypress-audio-context-bug/cypress/support/e2e.js
2024-07-17T09:26:25.356Z cypress:config:project:utils for project root C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.357Z cypress:config:project:utils resolved support file C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.358Z cypress:config:project:utils require.resolve switched support folder from C:/Workspace/cypress-audio-context-bug/cypress/support/e2e.js to C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.358Z cypress:config:project:utils switching to found file C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.358Z cypress:config:project:utils set support folder C:\Workspace\cypress-audio-context-bug\cypress\support
2024-07-17T09:26:25.358Z cypress:config:browser validating configuration {
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug',
rawJson: {
e2e: {},
envFile: {},
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug'
},
configFile: 'cypress.config.js',
morgan: false,
isTextTerminal: true,
socketId: 'fqkyvpac5e',
report: true,
animationDistanceThreshold: 5,
arch: 'x64',
baseUrl: null,
blockHosts: null,
chromeWebSecurity: true,
clientCertificates: [],
defaultCommandTimeout: 4000,
downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads',
env: {},
execTimeout: 60000,
experimentalCspAllowList: false,
experimentalFetchPolyfill: false,
experimentalInteractiveRunEvents: false,
experimentalRunAllSpecs: false,
experimentalMemoryManagement: false,
experimentalModifyObstructiveThirdPartyCode: false,
experimentalSkipDomainInjection: null,
experimentalOriginDependencies: false,
experimentalSourceRewriting: false,
experimentalSingleTabRunMode: false,
experimentalStudio: false,
experimentalWebKitSupport: false,
fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug',
fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures',
excludeSpecPattern: '*.hot-update.js',
includeShadowDom: false,
keystrokeDelay: 0,
modifyObstructiveCode: true,
numTestsKeptInMemory: 0,
platform: 'win32',
pageLoadTimeout: 60000,
port: null,
projectId: null,
redirectionLimit: 20,
reporter: 'spec',
reporterOptions: null,
requestTimeout: 5000,
resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe',
resolvedNodeVersion: '20.12.1',
responseTimeout: 30000,
retries: {
runMode: 0,
openMode: 0,
experimentalStrategy: undefined,
experimentalOptions: undefined
},
screenshotOnRunFailure: true,
screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots',
slowTestThreshold: 10000,
scrollBehavior: 'top',
supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js',
supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support',
taskTimeout: 60000,
testIsolation: true,
trashAssetsBeforeRuns: true,
userAgent: null,
video: false,
videoCompression: false,
videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos',
viewportHeight: 660,
viewportWidth: 1000,
waitForAnimations: true,
watchForFileChanges: false,
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
additionalIgnorePattern: [],
autoOpen: false,
browsers: [
{
name: 'chrome',
family: 'chromium',
channel: 'stable',
displayName: 'Chrome',
version: '126.0.6478.127',
path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe',
minSupportedVersion: 64,
majorVersion: '126'
},
{
name: 'firefox',
family: 'firefox',
channel: 'stable',
displayName: 'Firefox',
version: '127.0',
path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe',
minSupportedVersion: 86,
majorVersion: '127'
},
{
name: 'edge',
family: 'chromium',
channel: 'stable',
displayName: 'Edge',
version: '126.0.2592.61',
path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe',
minSupportedVersion: 79,
majorVersion: '126'
},
{
name: 'electron',
channel: 'stable',
family: 'chromium',
displayName: 'Electron',
version: '118.0.5993.159',
path: '',
majorVersion: 118
}
],
clientRoute: '/__/',
cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app',
devServerPublicPathRoute: '/__cypress/src',
hosts: null,
isInteractive: true,
namespace: '__cypress',
reporterRoute: '/__cypress/reporter',
socketIoCookie: '__socket',
socketIoRoute: '/__socket',
version: '13.13.1',
protocolEnabled: false,
hideCommandLog: false,
hideRunnerUi: false,
cypressEnv: 'production',
resolved: {
animationDistanceThreshold: { value: 5, from: 'default' },
arch: { value: 'x64', from: 'default' },
baseUrl: { value: null, from: 'default' },
blockHosts: { value: null, from: 'default' },
chromeWebSecurity: { value: true, from: 'default' },
clientCertificates: { value: [], from: 'default' },
defaultCommandTimeout: { value: 4000, from: 'default' },
downloadsFolder: { value: 'cypress/downloads', from: 'default' },
env: {},
execTimeout: { value: 60000, from: 'default' },
experimentalCspAllowList: { value: false, from: 'default' },
experimentalFetchPolyfill: { value: false, from: 'default' },
experimentalInteractiveRunEvents: { value: false, from: 'default' },
experimentalRunAllSpecs: { value: false, from: 'default' },
experimentalMemoryManagement: { value: false, from: 'default' },
experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' },
experimentalSkipDomainInjection: { value: null, from: 'default' },
experimentalOriginDependencies: { value: false, from: 'default' },
experimentalSourceRewriting: { value: false, from: 'default' },
experimentalSingleTabRunMode: { value: false, from: 'default' },
experimentalStudio: { value: false, from: 'default' },
experimentalWebKitSupport: { value: false, from: 'default' },
fileServerFolder: { value: '', from: 'default' },
fixturesFolder: { value: 'cypress/fixtures', from: 'default' },
excludeSpecPattern: { value: '*.hot-update.js', from: 'default' },
includeShadowDom: { value: false, from: 'default' },
keystrokeDelay: { value: 0, from: 'default' },
modifyObstructiveCode: { value: true, from: 'default' },
numTestsKeptInMemory: { value: 0, from: 'config' },
platform: { value: 'win32', from: 'default' },
pageLoadTimeout: { value: 60000, from: 'default' },
port: { value: null, from: 'default' },
projectId: { value: null, from: 'default' },
redirectionLimit: { value: 20, from: 'default' },
reporter: { value: 'spec', from: 'default' },
reporterOptions: { value: null, from: 'default' },
requestTimeout: { value: 5000, from: 'default' },
resolvedNodePath: { value: null, from: 'default' },
resolvedNodeVersion: { value: null, from: 'default' },
responseTimeout: { value: 30000, from: 'default' },
retries: { value: [Object], from: 'default' },
screenshotOnRunFailure: { value: true, from: 'default' },
screenshotsFolder: { value: 'cypress/screenshots', from: 'default' },
slowTestThreshold: { value: 10000, from: 'default' },
scrollBehavior: { value: 'top', from: 'default' },
supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' },
supportFolder: { value: false, from: 'default' },
taskTimeout: { value: 60000, from: 'default' },
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: false, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
viewportHeight: { value: 660, from: 'default' },
viewportWidth: { value: 1000, from: 'default' },
waitForAnimations: { value: true, from: 'default' },
watchForFileChanges: { value: false, from: 'config' },
specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' },
browsers: { value: [Array], from: 'runtime' },
hosts: { value: null, from: 'default' },
isInteractive: { value: true, from: 'default' }
}
}
2024-07-17T09:26:25.359Z cypress:server:validation clientCerts: []
2024-07-17T09:26:25.359Z cypress:server:validation browsers [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ]
2024-07-17T09:26:25.363Z cypress:lifecycle:child:run_require_async_child:19012 setupTestingType e2e { additionalIgnorePattern: [], animationDistanceThreshold: 5, arch: 'x64', autoOpen: false, baseUrl: null, blockHosts: null, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ], chromeWebSecurity: true, clientCertificates: [], clientRoute: '/__/', configFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress.config.js', cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app', cypressEnv: 'production', defaultCommandTimeout: 4000, devServerPublicPathRoute: '/__cypress/src', downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads', env: {}, excludeSpecPattern: '*.hot-update.js', execTimeout: 60000, experimentalCspAllowList: false, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalMemoryManagement: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalOriginDependencies: false, experimentalRunAllSpecs: false, experimentalSingleTabRunMode: false, experimentalSkipDomainInjection: null, experimentalSourceRewriting: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug', fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures', hideCommandLog: false, hideRunnerUi: false, hosts: null, includeShadowDom: false, isInteractive: true, isTextTerminal: true, keystrokeDelay: 0, modifyObstructiveCode: true, morgan: false, namespace: '__cypress', numTestsKeptInMemory: 0, pageLoadTimeout: 60000, platform: 'win32', port: null, projectId: null, projectName: 'cypress-audio-context-bug', projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', protocolEnabled: false, rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, redirectionLimit: 20, repoRoot: 'C:/Workspace/cypress-audio-context-bug', report: true, reporter: 'spec', reporterOptions: null, reporterRoute: '/__cypress/reporter', requestTimeout: 5000, resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalCspAllowList: { value: false, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalRunAllSpecs: { value: false, from: 'default' }, experimentalMemoryManagement: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSkipDomainInjection: { value: null, from: 'default' }, experimentalOriginDependencies: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: '*.hot-update.js', from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'win32', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 10000, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: true, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: false, from: 'default' }, videoCompression: { value: false, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, viewportHeight: { value: 660, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } }, resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', resolvedNodeVersion: '20.12.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots', scrollBehavior: 'top', slowTestThreshold: 10000, socketId: 'fqkyvpac5e', socketIoCookie: '__socket', socketIoRoute: '/__socket', specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js', supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support', taskTimeout: 60000, testIsolation: true, trashAssetsBeforeRuns: true, userAgent: null, version: '13.13.1', video: false, videoCompression: false, videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos', viewportHeight: 660, viewportWidth: 1000, waitForAnimations: true, watchForFileChanges: false, testingType: 'e2e' }
2024-07-17T09:26:25.363Z cypress:lifecycle:child:RunPlugins:19012 project root: C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 passing config { additionalIgnorePattern: [], animationDistanceThreshold: 5, arch: 'x64', autoOpen: false, baseUrl: null, blockHosts: null, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ], chromeWebSecurity: true, clientCertificates: [], clientRoute: '/__/', configFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress.config.js', cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app', cypressEnv: 'production', defaultCommandTimeout: 4000, devServerPublicPathRoute: '/__cypress/src', downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads', env: {}, excludeSpecPattern: '*.hot-update.js', execTimeout: 60000, experimentalCspAllowList: false, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalMemoryManagement: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalOriginDependencies: false, experimentalRunAllSpecs: false, experimentalSingleTabRunMode: false, experimentalSkipDomainInjection: null, experimentalSourceRewriting: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug', fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures', hideCommandLog: false, hideRunnerUi: false, hosts: null, includeShadowDom: false, isInteractive: true, isTextTerminal: true, keystrokeDelay: 0, modifyObstructiveCode: true, morgan: false, namespace: '__cypress', numTestsKeptInMemory: 0, pageLoadTimeout: 60000, platform: 'win32', port: null, projectId: null, projectName: 'cypress-audio-context-bug', projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', protocolEnabled: false, rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, redirectionLimit: 20, repoRoot: 'C:/Workspace/cypress-audio-context-bug', report: true, reporter: 'spec', reporterOptions: null, reporterRoute: '/__cypress/reporter', requestTimeout: 5000, resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalCspAllowList: { value: false, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalRunAllSpecs: { value: false, from: 'default' }, experimentalMemoryManagement: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSkipDomainInjection: { value: null, from: 'default' }, experimentalOriginDependencies: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: '*.hot-update.js', from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'win32', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 10000, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: true, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: false, from: 'default' }, videoCompression: { value: false, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, viewportHeight: { value: 660, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } }, resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', resolvedNodeVersion: '20.12.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0 }, screenshotOnRunFailure: true, screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots', scrollBehavior: 'top', slowTestThreshold: 10000, socketId: 'fqkyvpac5e', socketIoCookie: '__socket', socketIoRoute: '/__socket', specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js', supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support', taskTimeout: 60000, testIsolation: true, trashAssetsBeforeRuns: true, userAgent: null, version: '13.13.1', video: false, videoCompression: false, videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos', viewportHeight: 660, viewportWidth: 1000, waitForAnimations: true, watchForFileChanges: false, testingType: 'e2e' }
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 Loading the RunPlugins
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 register event _get:task:body with id 0
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 register event _get:task:keys with id 1
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 register event _process:cross:origin:callback with id 2
2024-07-17T09:26:25.364Z cypress:lifecycle:child:RunPlugins:19012 Calling setupNodeEvents
2024-07-17T09:26:25.365Z cypress:lifecycle:child:RunPlugins:19012 register default preprocessor
2024-07-17T09:26:25.366Z cypress:server:plugins resolving typescript with projectRoot 'C:\\Workspace\\cypress-audio-context-bug'
2024-07-17T09:26:25.366Z cypress:server:plugins could not resolve typescript, error: Cannot find module 'typescript'
Require stack:
- C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\@packages\server\lib\util\resolve.js
- C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\@packages\server\lib\plugins\child\run_plugins.js
- C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\@packages\server\lib\plugins\child\run_require_async_child.js
- C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\node_modules\@packages\server\lib\plugins\child\require_async_child.js
2024-07-17T09:26:25.366Z cypress:lifecycle:child:RunPlugins:19012 creating webpack preprocessor with options {}
2024-07-17T09:26:25.467Z cypress:lifecycle:child:RunPlugins:19012 register event file:preprocessor with id 3
2024-07-17T09:26:25.468Z cypress:lifecycle:child:RunPlugins:19012 plugins file successfully loaded
2024-07-17T09:26:25.468Z cypress:lifecycle:ProjectConfigManager register plugins process event _get:task:body with id 0
2024-07-17T09:26:25.469Z cypress:lifecycle:EventRegistrar register event '_get:task:body'
2024-07-17T09:26:25.469Z cypress:lifecycle:ProjectConfigManager register plugins process event _get:task:keys with id 1
2024-07-17T09:26:25.469Z cypress:lifecycle:EventRegistrar register event '_get:task:keys'
2024-07-17T09:26:25.469Z cypress:lifecycle:ProjectConfigManager register plugins process event _process:cross:origin:callback with id 2
2024-07-17T09:26:25.469Z cypress:lifecycle:EventRegistrar register event '_process:cross:origin:callback'
2024-07-17T09:26:25.469Z cypress:lifecycle:ProjectConfigManager register plugins process event file:preprocessor with id 3
2024-07-17T09:26:25.469Z cypress:lifecycle:EventRegistrar register event 'file:preprocessor'
2024-07-17T09:26:25.469Z cypress:config:browser validating configuration {}
2024-07-17T09:26:25.470Z cypress:config:project setting config object { cliConfig: {}, projectName: 'cypress-audio-context-bug', projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', config: { e2e: {} }, envFile: {}, options: { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', socketId: 'fqkyvpac5e', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, testingType: 'e2e', configFile: 'cypress.config.js' }, configFile: 'cypress.config.js' }
2024-07-17T09:26:25.470Z cypress:config:project config is { e2e: {} }
2024-07-17T09:26:25.470Z cypress:config:project:utils merged config with options, got { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, configFile: 'cypress.config.js', morgan: false, isTextTerminal: true, socketId: 'fqkyvpac5e', report: true }
2024-07-17T09:26:25.471Z cypress:config:project:utils using CYPRESS_INTERNAL_ENV production
2024-07-17T09:26:25.472Z cypress:config:project:utils resolved config is { value: [], from: 'default' }
2024-07-17T09:26:25.472Z cypress:config:browser validating configuration {
e2e: { specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}' },
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug',
rawJson: {
e2e: {},
envFile: {},
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug'
},
configFile: 'cypress.config.js',
morgan: false,
isTextTerminal: true,
socketId: 'fqkyvpac5e',
report: true,
animationDistanceThreshold: 5,
arch: 'x64',
baseUrl: null,
blockHosts: null,
chromeWebSecurity: true,
clientCertificates: [],
component: {
specPattern: '**/*.cy.{js,jsx,ts,tsx}',
indexHtmlFile: 'cypress/support/component-index.html'
},
defaultCommandTimeout: 4000,
downloadsFolder: 'cypress/downloads',
env: {},
execTimeout: 60000,
experimentalCspAllowList: false,
experimentalFetchPolyfill: false,
experimentalInteractiveRunEvents: false,
experimentalRunAllSpecs: false,
experimentalMemoryManagement: false,
experimentalModifyObstructiveThirdPartyCode: false,
experimentalSkipDomainInjection: null,
experimentalOriginDependencies: false,
experimentalSourceRewriting: false,
experimentalSingleTabRunMode: false,
experimentalStudio: false,
experimentalWebKitSupport: false,
fileServerFolder: '',
fixturesFolder: 'cypress/fixtures',
excludeSpecPattern: '*.hot-update.js',
includeShadowDom: false,
keystrokeDelay: 0,
modifyObstructiveCode: true,
numTestsKeptInMemory: 0,
platform: 'win32',
pageLoadTimeout: 60000,
port: null,
projectId: null,
redirectionLimit: 20,
reporter: 'spec',
reporterOptions: null,
requestTimeout: 5000,
resolvedNodePath: null,
resolvedNodeVersion: null,
responseTimeout: 30000,
retries: {
runMode: 0,
openMode: 0,
experimentalStrategy: undefined,
experimentalOptions: undefined
},
screenshotOnRunFailure: true,
screenshotsFolder: 'cypress/screenshots',
slowTestThreshold: 10000,
scrollBehavior: 'top',
supportFile: 'cypress/support/e2e.{js,jsx,ts,tsx}',
supportFolder: false,
taskTimeout: 60000,
testIsolation: true,
trashAssetsBeforeRuns: true,
userAgent: null,
video: false,
videoCompression: false,
videosFolder: 'cypress/videos',
viewportHeight: 660,
viewportWidth: 1000,
waitForAnimations: true,
watchForFileChanges: false,
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
additionalIgnorePattern: [],
autoOpen: false,
clientRoute: '/__/',
cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app',
devServerPublicPathRoute: '/__cypress/src',
hosts: null,
isInteractive: true,
namespace: '__cypress',
reporterRoute: '/__cypress/reporter',
socketIoCookie: '__socket',
socketIoRoute: '/__socket',
version: '13.13.1',
protocolEnabled: false,
hideCommandLog: false,
hideRunnerUi: false,
cypressEnv: 'production',
resolved: {
animationDistanceThreshold: { value: 5, from: 'default' },
arch: { value: 'x64', from: 'default' },
baseUrl: { value: null, from: 'default' },
blockHosts: { value: null, from: 'default' },
chromeWebSecurity: { value: true, from: 'default' },
clientCertificates: { value: [], from: 'default' },
component: { value: [Object], from: 'default' },
defaultCommandTimeout: { value: 4000, from: 'default' },
downloadsFolder: { value: 'cypress/downloads', from: 'default' },
e2e: { value: [Object], from: 'default' },
env: {},
execTimeout: { value: 60000, from: 'default' },
experimentalCspAllowList: { value: false, from: 'default' },
experimentalFetchPolyfill: { value: false, from: 'default' },
experimentalInteractiveRunEvents: { value: false, from: 'default' },
experimentalRunAllSpecs: { value: false, from: 'default' },
experimentalMemoryManagement: { value: false, from: 'default' },
experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' },
experimentalSkipDomainInjection: { value: null, from: 'default' },
experimentalOriginDependencies: { value: false, from: 'default' },
experimentalSourceRewriting: { value: false, from: 'default' },
experimentalSingleTabRunMode: { value: false, from: 'default' },
experimentalStudio: { value: false, from: 'default' },
experimentalWebKitSupport: { value: false, from: 'default' },
fileServerFolder: { value: '', from: 'default' },
fixturesFolder: { value: 'cypress/fixtures', from: 'default' },
excludeSpecPattern: { value: '*.hot-update.js', from: 'default' },
includeShadowDom: { value: false, from: 'default' },
keystrokeDelay: { value: 0, from: 'default' },
modifyObstructiveCode: { value: true, from: 'default' },
numTestsKeptInMemory: { value: 0, from: 'config' },
platform: { value: 'win32', from: 'default' },
pageLoadTimeout: { value: 60000, from: 'default' },
port: { value: null, from: 'default' },
projectId: { value: null, from: 'default' },
redirectionLimit: { value: 20, from: 'default' },
reporter: { value: 'spec', from: 'default' },
reporterOptions: { value: null, from: 'default' },
requestTimeout: { value: 5000, from: 'default' },
resolvedNodePath: { value: null, from: 'default' },
resolvedNodeVersion: { value: null, from: 'default' },
responseTimeout: { value: 30000, from: 'default' },
retries: { value: [Object], from: 'default' },
screenshotOnRunFailure: { value: true, from: 'default' },
screenshotsFolder: { value: 'cypress/screenshots', from: 'default' },
slowTestThreshold: { value: 10000, from: 'default' },
scrollBehavior: { value: 'top', from: 'default' },
supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' },
supportFolder: { value: false, from: 'default' },
taskTimeout: { value: 60000, from: 'default' },
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: false, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
viewportHeight: { value: 660, from: 'default' },
viewportWidth: { value: 1000, from: 'default' },
waitForAnimations: { value: true, from: 'default' },
watchForFileChanges: { value: false, from: 'config' },
specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' },
browsers: { value: [], from: 'default' },
hosts: { value: null, from: 'default' },
isInteractive: { value: true, from: 'default' }
}
}
2024-07-17T09:26:25.472Z cypress:server:validation clientCerts: []
2024-07-17T09:26:25.472Z cypress:config:project:utils validate that there is no breaking config options before setupNodeEvents
2024-07-17T09:26:25.472Z cypress:data-context:sources:FileDataSource updating glob patterns to POSIX
2024-07-17T09:26:25.472Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ 'cypress/support/e2e.{js,jsx,ts,tsx}' ]
2024-07-17T09:26:25.472Z cypress:data-context:sources:FileDataSource within directory: C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.474Z cypress:config:project:utils setting support file C:/Workspace/cypress-audio-context-bug/cypress/support/e2e.js
2024-07-17T09:26:25.474Z cypress:config:project:utils for project root C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.474Z cypress:config:project:utils resolved support file C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.474Z cypress:config:project:utils require.resolve switched support folder from C:/Workspace/cypress-audio-context-bug/cypress/support/e2e.js to C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.474Z cypress:config:project:utils switching to found file C:\Workspace\cypress-audio-context-bug\cypress\support\e2e.js
2024-07-17T09:26:25.474Z cypress:config:project:utils set support folder C:\Workspace\cypress-audio-context-bug\cypress\support
2024-07-17T09:26:25.474Z cypress:config:browser validating configuration {
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug',
rawJson: {
e2e: {},
envFile: {},
projectRoot: 'C:\\Workspace\\cypress-audio-context-bug',
projectName: 'cypress-audio-context-bug',
repoRoot: 'C:/Workspace/cypress-audio-context-bug'
},
configFile: 'cypress.config.js',
morgan: false,
isTextTerminal: true,
socketId: 'fqkyvpac5e',
report: true,
animationDistanceThreshold: 5,
arch: 'x64',
baseUrl: null,
blockHosts: null,
chromeWebSecurity: true,
clientCertificates: [],
defaultCommandTimeout: 4000,
downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads',
env: {},
execTimeout: 60000,
experimentalCspAllowList: false,
experimentalFetchPolyfill: false,
experimentalInteractiveRunEvents: false,
experimentalRunAllSpecs: false,
experimentalMemoryManagement: false,
experimentalModifyObstructiveThirdPartyCode: false,
experimentalSkipDomainInjection: null,
experimentalOriginDependencies: false,
experimentalSourceRewriting: false,
experimentalSingleTabRunMode: false,
experimentalStudio: false,
experimentalWebKitSupport: false,
fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug',
fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures',
excludeSpecPattern: '*.hot-update.js',
includeShadowDom: false,
keystrokeDelay: 0,
modifyObstructiveCode: true,
numTestsKeptInMemory: 0,
platform: 'win32',
pageLoadTimeout: 60000,
port: null,
projectId: null,
redirectionLimit: 20,
reporter: 'spec',
reporterOptions: null,
requestTimeout: 5000,
resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe',
resolvedNodeVersion: '20.12.1',
responseTimeout: 30000,
retries: {
runMode: 0,
openMode: 0,
experimentalStrategy: undefined,
experimentalOptions: undefined
},
screenshotOnRunFailure: true,
screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots',
slowTestThreshold: 10000,
scrollBehavior: 'top',
supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js',
supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support',
taskTimeout: 60000,
testIsolation: true,
trashAssetsBeforeRuns: true,
userAgent: null,
video: false,
videoCompression: false,
videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos',
viewportHeight: 660,
viewportWidth: 1000,
waitForAnimations: true,
watchForFileChanges: false,
specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}',
additionalIgnorePattern: [],
autoOpen: false,
browsers: [
{
name: 'chrome',
family: 'chromium',
channel: 'stable',
displayName: 'Chrome',
version: '126.0.6478.127',
path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe',
minSupportedVersion: 64,
majorVersion: '126'
},
{
name: 'firefox',
family: 'firefox',
channel: 'stable',
displayName: 'Firefox',
version: '127.0',
path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe',
minSupportedVersion: 86,
majorVersion: '127'
},
{
name: 'edge',
family: 'chromium',
channel: 'stable',
displayName: 'Edge',
version: '126.0.2592.61',
path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe',
minSupportedVersion: 79,
majorVersion: '126'
},
{
name: 'electron',
channel: 'stable',
family: 'chromium',
displayName: 'Electron',
version: '118.0.5993.159',
path: '',
majorVersion: 118
}
],
clientRoute: '/__/',
cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app',
devServerPublicPathRoute: '/__cypress/src',
hosts: null,
isInteractive: true,
namespace: '__cypress',
reporterRoute: '/__cypress/reporter',
socketIoCookie: '__socket',
socketIoRoute: '/__socket',
version: '13.13.1',
protocolEnabled: false,
hideCommandLog: false,
hideRunnerUi: false,
cypressEnv: 'production',
resolved: {
animationDistanceThreshold: { value: 5, from: 'default' },
arch: { value: 'x64', from: 'default' },
baseUrl: { value: null, from: 'default' },
blockHosts: { value: null, from: 'default' },
chromeWebSecurity: { value: true, from: 'default' },
clientCertificates: { value: [], from: 'default' },
defaultCommandTimeout: { value: 4000, from: 'default' },
downloadsFolder: { value: 'cypress/downloads', from: 'default' },
env: {},
execTimeout: { value: 60000, from: 'default' },
experimentalCspAllowList: { value: false, from: 'default' },
experimentalFetchPolyfill: { value: false, from: 'default' },
experimentalInteractiveRunEvents: { value: false, from: 'default' },
experimentalRunAllSpecs: { value: false, from: 'default' },
experimentalMemoryManagement: { value: false, from: 'default' },
experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' },
experimentalSkipDomainInjection: { value: null, from: 'default' },
experimentalOriginDependencies: { value: false, from: 'default' },
experimentalSourceRewriting: { value: false, from: 'default' },
experimentalSingleTabRunMode: { value: false, from: 'default' },
experimentalStudio: { value: false, from: 'default' },
experimentalWebKitSupport: { value: false, from: 'default' },
fileServerFolder: { value: '', from: 'default' },
fixturesFolder: { value: 'cypress/fixtures', from: 'default' },
excludeSpecPattern: { value: '*.hot-update.js', from: 'default' },
includeShadowDom: { value: false, from: 'default' },
keystrokeDelay: { value: 0, from: 'default' },
modifyObstructiveCode: { value: true, from: 'default' },
numTestsKeptInMemory: { value: 0, from: 'config' },
platform: { value: 'win32', from: 'default' },
pageLoadTimeout: { value: 60000, from: 'default' },
port: { value: null, from: 'default' },
projectId: { value: null, from: 'default' },
redirectionLimit: { value: 20, from: 'default' },
reporter: { value: 'spec', from: 'default' },
reporterOptions: { value: null, from: 'default' },
requestTimeout: { value: 5000, from: 'default' },
resolvedNodePath: { value: null, from: 'default' },
resolvedNodeVersion: { value: null, from: 'default' },
responseTimeout: { value: 30000, from: 'default' },
retries: { value: [Object], from: 'default' },
screenshotOnRunFailure: { value: true, from: 'default' },
screenshotsFolder: { value: 'cypress/screenshots', from: 'default' },
slowTestThreshold: { value: 10000, from: 'default' },
scrollBehavior: { value: 'top', from: 'default' },
supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' },
supportFolder: { value: false, from: 'default' },
taskTimeout: { value: 60000, from: 'default' },
testIsolation: { value: true, from: 'default' },
trashAssetsBeforeRuns: { value: true, from: 'default' },
userAgent: { value: null, from: 'default' },
video: { value: false, from: 'default' },
videoCompression: { value: false, from: 'default' },
videosFolder: { value: 'cypress/videos', from: 'default' },
viewportHeight: { value: 660, from: 'default' },
viewportWidth: { value: 1000, from: 'default' },
waitForAnimations: { value: true, from: 'default' },
watchForFileChanges: { value: false, from: 'config' },
specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' },
browsers: { value: [Array], from: 'runtime' },
hosts: { value: null, from: 'default' },
isInteractive: { value: true, from: 'default' }
}
}
2024-07-17T09:26:25.475Z cypress:server:validation clientCerts: []
2024-07-17T09:26:25.475Z cypress:server:validation browsers [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ]
2024-07-17T09:26:25.475Z cypress:config:project updateWithPluginValues { cfg: { projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, configFile: 'cypress.config.js', morgan: false, isTextTerminal: true, socketId: 'fqkyvpac5e', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads', env: {}, execTimeout: 60000, experimentalCspAllowList: false, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalRunAllSpecs: false, experimentalMemoryManagement: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSkipDomainInjection: null, experimentalOriginDependencies: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug', fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures', excludeSpecPattern: '*.hot-update.js', includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, numTestsKeptInMemory: 0, platform: 'win32', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', resolvedNodeVersion: '20.12.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0, experimentalStrategy: undefined, experimentalOptions: undefined }, screenshotOnRunFailure: true, screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots', slowTestThreshold: 10000, scrollBehavior: 'top', supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js', supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support', taskTimeout: 60000, testIsolation: true, trashAssetsBeforeRuns: true, userAgent: null, video: false, videoCompression: false, videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos', viewportHeight: 660, viewportWidth: 1000, waitForAnimations: true, watchForFileChanges: false, specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: [], autoOpen: false, browsers: [ [Object], [Object], [Object], [Object] ], clientRoute: '/__/', cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '13.13.1', protocolEnabled: false, hideCommandLog: false, hideRunnerUi: false, cypressEnv: 'production', resolved: { animationDistanceThreshold: [Object], arch: [Object], baseUrl: [Object], blockHosts: [Object], chromeWebSecurity: [Object], clientCertificates: [Object], defaultCommandTimeout: [Object], downloadsFolder: [Object], env: {}, execTimeout: [Object], experimentalCspAllowList: [Object], experimentalFetchPolyfill: [Object], experimentalInteractiveRunEvents: [Object], experimentalRunAllSpecs: [Object], experimentalMemoryManagement: [Object], experimentalModifyObstructiveThirdPartyCode: [Object], experimentalSkipDomainInjection: [Object], experimentalOriginDependencies: [Object], experimentalSourceRewriting: [Object], experimentalSingleTabRunMode: [Object], experimentalStudio: [Object], experimentalWebKitSupport: [Object], fileServerFolder: [Object], fixturesFolder: [Object], excludeSpecPattern: [Object], includeShadowDom: [Object], keystrokeDelay: [Object], modifyObstructiveCode: [Object], numTestsKeptInMemory: [Object], platform: [Object], pageLoadTimeout: [Object], port: [Object], projectId: [Object], redirectionLimit: [Object], reporter: [Object], reporterOptions: [Object], requestTimeout: [Object], resolvedNodePath: [Object], resolvedNodeVersion: [Object], responseTimeout: [Object], retries: [Object], screenshotOnRunFailure: [Object], screenshotsFolder: [Object], slowTestThreshold: [Object], scrollBehavior: [Object], supportFile: [Object], supportFolder: [Object], taskTimeout: [Object], testIsolation: [Object], trashAssetsBeforeRuns: [Object], userAgent: [Object], video: [Object], videoCompression: [Object], videosFolder: [Object], viewportHeight: [Object], viewportWidth: [Object], waitForAnimations: [Object], watchForFileChanges: [Object], specPattern: [Object], browsers: [Object], hosts: [Object], isInteractive: [Object] } }, modifiedConfig: {} }
2024-07-17T09:26:25.476Z cypress:config:browser validating configuration {}
2024-07-17T09:26:25.476Z cypress:config:project validate that there is no breaking config options added by setupNodeEvents
2024-07-17T09:26:25.476Z cypress:config:project config diffs null
2024-07-17T09:26:25.477Z cypress:config:project merged config object { projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, configFile: 'cypress.config.js', morgan: false, isTextTerminal: true, socketId: 'fqkyvpac5e', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads', env: {}, execTimeout: 60000, experimentalCspAllowList: false, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalRunAllSpecs: false, experimentalMemoryManagement: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSkipDomainInjection: null, experimentalOriginDependencies: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug', fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures', excludeSpecPattern: '*.hot-update.js', includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, numTestsKeptInMemory: 0, platform: 'win32', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', resolvedNodeVersion: '20.12.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0, experimentalStrategy: undefined, experimentalOptions: undefined }, screenshotOnRunFailure: true, screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots', slowTestThreshold: 10000, scrollBehavior: 'top', supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js', supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support', taskTimeout: 60000, testIsolation: true, trashAssetsBeforeRuns: true, userAgent: null, video: false, videoCompression: false, videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos', viewportHeight: 660, viewportWidth: 1000, waitForAnimations: true, watchForFileChanges: false, specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: [], autoOpen: false, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ], clientRoute: '/__/', cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '13.13.1', protocolEnabled: false, hideCommandLog: false, hideRunnerUi: false, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalCspAllowList: { value: false, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalRunAllSpecs: { value: false, from: 'default' }, experimentalMemoryManagement: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSkipDomainInjection: { value: null, from: 'default' }, experimentalOriginDependencies: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: '*.hot-update.js', from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'win32', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 10000, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: true, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: false, from: 'default' }, videoCompression: { value: false, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, viewportHeight: { value: 660, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } } }
2024-07-17T09:26:25.477Z cypress:config:project merged plugins config { projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug', rawJson: { e2e: {}, envFile: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', projectName: 'cypress-audio-context-bug', repoRoot: 'C:/Workspace/cypress-audio-context-bug' }, configFile: 'cypress.config.js', morgan: false, isTextTerminal: true, socketId: 'fqkyvpac5e', report: true, animationDistanceThreshold: 5, arch: 'x64', baseUrl: null, blockHosts: null, chromeWebSecurity: true, clientCertificates: [], defaultCommandTimeout: 4000, downloadsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\downloads', env: {}, execTimeout: 60000, experimentalCspAllowList: false, experimentalFetchPolyfill: false, experimentalInteractiveRunEvents: false, experimentalRunAllSpecs: false, experimentalMemoryManagement: false, experimentalModifyObstructiveThirdPartyCode: false, experimentalSkipDomainInjection: null, experimentalOriginDependencies: false, experimentalSourceRewriting: false, experimentalSingleTabRunMode: false, experimentalStudio: false, experimentalWebKitSupport: false, fileServerFolder: 'C:\\Workspace\\cypress-audio-context-bug', fixturesFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\fixtures', excludeSpecPattern: '*.hot-update.js', includeShadowDom: false, keystrokeDelay: 0, modifyObstructiveCode: true, numTestsKeptInMemory: 0, platform: 'win32', pageLoadTimeout: 60000, port: null, projectId: null, redirectionLimit: 20, reporter: 'spec', reporterOptions: null, requestTimeout: 5000, resolvedNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', resolvedNodeVersion: '20.12.1', responseTimeout: 30000, retries: { runMode: 0, openMode: 0, experimentalStrategy: undefined, experimentalOptions: undefined }, screenshotOnRunFailure: true, screenshotsFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\screenshots', slowTestThreshold: 10000, scrollBehavior: 'top', supportFile: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support\\e2e.js', supportFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\support', taskTimeout: 60000, testIsolation: true, trashAssetsBeforeRuns: true, userAgent: null, video: false, videoCompression: false, videosFolder: 'C:\\Workspace\\cypress-audio-context-bug\\cypress\\videos', viewportHeight: 660, viewportWidth: 1000, waitForAnimations: true, watchForFileChanges: false, specPattern: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', additionalIgnorePattern: [], autoOpen: false, browsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ], clientRoute: '/__/', cypressBinaryRoot: 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app', devServerPublicPathRoute: '/__cypress/src', hosts: null, isInteractive: true, namespace: '__cypress', reporterRoute: '/__cypress/reporter', socketIoCookie: '__socket', socketIoRoute: '/__socket', version: '13.13.1', protocolEnabled: false, hideCommandLog: false, hideRunnerUi: false, cypressEnv: 'production', resolved: { animationDistanceThreshold: { value: 5, from: 'default' }, arch: { value: 'x64', from: 'default' }, baseUrl: { value: null, from: 'default' }, blockHosts: { value: null, from: 'default' }, chromeWebSecurity: { value: true, from: 'default' }, clientCertificates: { value: [], from: 'default' }, defaultCommandTimeout: { value: 4000, from: 'default' }, downloadsFolder: { value: 'cypress/downloads', from: 'default' }, env: {}, execTimeout: { value: 60000, from: 'default' }, experimentalCspAllowList: { value: false, from: 'default' }, experimentalFetchPolyfill: { value: false, from: 'default' }, experimentalInteractiveRunEvents: { value: false, from: 'default' }, experimentalRunAllSpecs: { value: false, from: 'default' }, experimentalMemoryManagement: { value: false, from: 'default' }, experimentalModifyObstructiveThirdPartyCode: { value: false, from: 'default' }, experimentalSkipDomainInjection: { value: null, from: 'default' }, experimentalOriginDependencies: { value: false, from: 'default' }, experimentalSourceRewriting: { value: false, from: 'default' }, experimentalSingleTabRunMode: { value: false, from: 'default' }, experimentalStudio: { value: false, from: 'default' }, experimentalWebKitSupport: { value: false, from: 'default' }, fileServerFolder: { value: '', from: 'default' }, fixturesFolder: { value: 'cypress/fixtures', from: 'default' }, excludeSpecPattern: { value: '*.hot-update.js', from: 'default' }, includeShadowDom: { value: false, from: 'default' }, keystrokeDelay: { value: 0, from: 'default' }, modifyObstructiveCode: { value: true, from: 'default' }, numTestsKeptInMemory: { value: 0, from: 'config' }, platform: { value: 'win32', from: 'default' }, pageLoadTimeout: { value: 60000, from: 'default' }, port: { value: null, from: 'default' }, projectId: { value: null, from: 'default' }, redirectionLimit: { value: 20, from: 'default' }, reporter: { value: 'spec', from: 'default' }, reporterOptions: { value: null, from: 'default' }, requestTimeout: { value: 5000, from: 'default' }, resolvedNodePath: { value: null, from: 'default' }, resolvedNodeVersion: { value: null, from: 'default' }, responseTimeout: { value: 30000, from: 'default' }, retries: { value: [Object], from: 'default' }, screenshotOnRunFailure: { value: true, from: 'default' }, screenshotsFolder: { value: 'cypress/screenshots', from: 'default' }, slowTestThreshold: { value: 10000, from: 'default' }, scrollBehavior: { value: 'top', from: 'default' }, supportFile: { value: 'cypress/support/e2e.{js,jsx,ts,tsx}', from: 'default' }, supportFolder: { value: false, from: 'default' }, taskTimeout: { value: 60000, from: 'default' }, testIsolation: { value: true, from: 'default' }, trashAssetsBeforeRuns: { value: true, from: 'default' }, userAgent: { value: null, from: 'default' }, video: { value: false, from: 'default' }, videoCompression: { value: false, from: 'default' }, videosFolder: { value: 'cypress/videos', from: 'default' }, viewportHeight: { value: 660, from: 'default' }, viewportWidth: { value: 1000, from: 'default' }, waitForAnimations: { value: true, from: 'default' }, watchForFileChanges: { value: false, from: 'config' }, specPattern: { value: 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}', from: 'default' }, browsers: { value: [Array], from: 'runtime' }, hosts: { value: null, from: 'default' }, isInteractive: { value: true, from: 'default' } } }
2024-07-17T09:26:25.478Z cypress:data-context:sources:FileDataSource updating glob patterns to POSIX
2024-07-17T09:26:25.478Z cypress:data-context:sources:FileDataSource globbing pattern(s): [ 'cypress/e2e/**/*.cy.{js,jsx,ts,tsx}' ]
2024-07-17T09:26:25.478Z cypress:data-context:sources:FileDataSource within directory: C:\Workspace\cypress-audio-context-bug
2024-07-17T09:26:25.481Z cypress:data-context:sources:ProjectDataSource found specs [ 'C:/Workspace/cypress-audio-context-bug/cypress/e2e/audio-context/add-module.cy.js' ]
2024-07-17T09:26:25.482Z cypress:data-context:sources:GitDataSource getting git info for [ 'C:/Workspace/cypress-audio-context-bug/cypress/e2e/audio-context/add-module.cy.js' ]:
2024-07-17T09:26:25.482Z cypress:data-context:sources:GitDataSource executing command: `FOR %x in ("C:\Workspace\cypress-audio-context-bug\cypress\e2e\audio-context\add-module.cy.js") DO (git log --max-count=1 --pretty="format:%ci %ar %an|%h|%s" %x)`
2024-07-17T09:26:25.482Z cypress:data-context:sources:GitDataSource cwd: `C:/Workspace/cypress-audio-context-bug`
2024-07-17T09:26:25.493Z cypress:data-context:codegen:code-generator hasNonExampleSpec - calling with template directory "C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\packages\example\cypress\e2e" and 1
2024-07-17T09:26:25.501Z cypress:server:browsers:utils searching for browser { nameOrPath: 'electron', filter: { name: 'electron', channel: 'stable' }, knownBrowsers: [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', version: '126.0.6478.127', path: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', minSupportedVersion: 64, majorVersion: '126' }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', version: '127.0', path: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', minSupportedVersion: 86, majorVersion: '127' }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', version: '126.0.2592.61', path: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', minSupportedVersion: 79, majorVersion: '126' }, { name: 'electron', channel: 'stable', family: 'chromium', displayName: 'Electron', version: '118.0.5993.159', path: '', majorVersion: 118 } ] }
2024-07-17T09:26:25.501Z cypress:data-context browser found to set electron
2024-07-17T09:26:25.502Z cypress:server:appdata path: C:\Users\TMA\AppData\Roaming\Cypress\cy\production\cache
2024-07-17T09:26:25.506Z cypress:server:saved_state making saved state from C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\packages\server
2024-07-17T09:26:25.506Z cypress:server:saved_state missing project path, looking for project here
2024-07-17T09:26:25.508Z cypress:server:saved_state state path for global mode
2024-07-17T09:26:25.508Z cypress:server:appdata path: C:\Users\TMA\AppData\Roaming\Cypress\cy\production\projects\__global__\state.json
2024-07-17T09:26:25.508Z cypress:server:saved_state full state path C:\Users\TMA\AppData\Roaming\Cypress\cy\production\projects\__global__\state.json
2024-07-17T09:26:25.508Z cypress:server:saved_state making new state file around C:\Users\TMA\AppData\Roaming\Cypress\cy\production\projects\__global__\state.json
2024-07-17T09:26:25.511Z cypress:data-context:codegen:code-generator hasNonExampleSpec - checking for spec add-module.cy.js
2024-07-17T09:26:25.514Z cypress:server:run run mode ready with options { _: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\Cypress.exe' ], runProject: 'C:\\Workspace\\cypress-audio-context-bug', cwd: 'C:\\Workspace\\cypress-audio-context-bug', userNodePath: 'C:\\Users\\TMA\\AppData\\Local\\pnpm\\node.exe', userNodeVersion: '20.12.1', invokedFromCli: true, config: {}, projectRoot: 'C:\\Workspace\\cypress-audio-context-bug', socketId: 'fqkyvpac5e', isTextTerminal: true, browser: 'electron', quiet: false, morgan: false, report: true, testingType: 'e2e' }
2024-07-17T09:26:25.514Z cypress:server:browsers:utils getBrowsers
2024-07-17T09:26:25.515Z cypress:launcher:detect detecting if the following browsers are present [ { name: 'chrome', family: 'chromium', channel: 'stable', displayName: 'Chrome', versionRegex: /Google Chrome (\S+)/m, binary: [ 'google-chrome', 'chrome', 'google-chrome-stable' ], minSupportedVersion: 64 }, { name: 'chromium', family: 'chromium', channel: 'stable', displayName: 'Chromium', versionRegex: /Chromium (\S+)/m, binary: [ 'chromium-browser', 'chromium' ], minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'beta', displayName: 'Chrome Beta', versionRegex: /Google Chrome (\S+) beta/m, binary: 'google-chrome-beta', minSupportedVersion: 64 }, { name: 'chrome', family: 'chromium', channel: 'canary', displayName: 'Canary', versionRegex: /Google Chrome Canary (\S+)/m, binary: 'google-chrome-canary', minSupportedVersion: 64 }, { name: 'firefox', family: 'firefox', channel: 'stable', displayName: 'Firefox', versionRegex: /^Mozilla Firefox ([^\sab]+)$/m, binary: 'firefox', minSupportedVersion: 86, validator: [Function: validator] }, { name: 'firefox', family: 'firefox', channel: 'dev', displayName: 'Firefox Developer Edition', versionRegex: /^Mozilla Firefox (\S+b\S*)$/m, binary: [ 'firefox-developer-edition', 'firefox' ], minSupportedVersion: 86 }, { name: 'firefox', family: 'firefox', channel: 'nightly', displayName: 'Firefox Nightly', versionRegex: /^Mozilla Firefox (\S+a\S*)$/m, binary: [ 'firefox-nightly', 'firefox-trunk' ], minSupportedVersion: 86 }, { name: 'edge', family: 'chromium', channel: 'stable', displayName: 'Edge', versionRegex: /Microsoft Edge (\S+)/im, binary: [ 'edge', 'microsoft-edge' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'canary', displayName: 'Edge Canary', versionRegex: /Microsoft Edge.+?(\S*(?= canary)|(?<=canary )\S*)/im, binary: [ 'edge-canary', 'microsoft-edge-canary' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'beta', displayName: 'Edge Beta', versionRegex: /Microsoft Edge.+?(\S*(?= beta)|(?<=beta )\S*)/im, binary: [ 'edge-beta', 'microsoft-edge-beta' ], minSupportedVersion: 79 }, { name: 'edge', family: 'chromium', channel: 'dev', displayName: 'Edge Dev', versionRegex: /Microsoft Edge.+?(\S*(?= dev)|(?<=dev )\S*)/im, binary: [ 'edge-dev', 'microsoft-edge-dev' ], minSupportedVersion: 79 } ]
2024-07-17T09:26:25.515Z cypress:server:browsers:utils WebKit is enabled, but there was an error constructing the WebKit browser: { err: Error: Cannot find module 'playwright-webkit' Require stack: - C:\Users\TMA\AppData\Local\Cypress\Cache\13.13.1\Cypress\resources\app\packages\server\lib\browsers\utils.ts at node:internal/modules/cjs/loader:1084:15 at Function._resolveFilename (node:electron/js2c/browser_init:2:116118) at resolve (node:internal/modules/cjs/helpers:127:19) at Function.resolve (evalmachine.<anonymous>:1:801904) at q (<embedded>:2792:98016) at Object.I [as get] (<embedded>:2792:98851) at H (<embedded>:2883:92117) at Object.W (<embedded>:2883:94645) { code: 'MODULE_NOT_FOUND', requireStack: [ 'C:\\Users\\TMA\\AppData\\Local\\Cypress\\Cache\\13.13.1\\Cypress\\resources\\app\\packages\\server\\lib\\browsers\\utils.ts' ] } }
2024-07-17T09:26:25.517Z cypress:launcher:windows got version string for chrome: { exePath: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe', version: '126.0.6478.127' }
2024-07-17T09:26:25.518Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Google\\chrome-win32\\chrome.exe', exePaths: [], err: Error: Browser not installed: chromium at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:25.518Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Google\\Chrome Beta\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:25.518Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Google\\Chrome Beta\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:25.519Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Google\\Chrome SxS\\Application\\chrome.exe', exePaths: [], err: Error: Browser not installed: chrome at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:25.520Z cypress:launcher:windows got version string for firefox: { exePath: 'C:\\Program Files\\Mozilla Firefox\\firefox.exe', version: '127.0' }
2024-07-17T09:26:25.521Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:25.521Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:25.521Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Developer Edition\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:25.522Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Users\\TMA\\AppData\\Local\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147378 { notInstalled: true } }
2024-07-17T09:26:25.524Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files (x86)\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:25.524Z cypress:launcher:windows error while looking up exe, trying next exePath { exePath: 'C:\\Program Files\\Firefox Nightly\\firefox.exe', exePaths: [], err: Error: Browser not installed: firefox at r (<embedded>:2761:133619) at a (<embedded>:2761:147033) at <embedded>:2761:147483 { notInstalled: true } }
2024-07-17T09:26:25.525Z cypress:launcher:windows got version string for edge: { exePath: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', version: '126.0.2592.61' }