cypress icon indicating copy to clipboard operation
cypress copied to clipboard

Cy.wait() sometimes returns an empty string request.body

Open SplikStick opened this issue 2 years ago • 15 comments
trafficstars

Current behavior

I have simplified the problem to it's bare bones and censored out any sensitive information.

(Referring to the Test Code) When submitting the form on our webpage, a request to urlA is expected to have the formdata from that submission in application/x-www-form-urlencoded format but randomly request.body is an empty string.

I am waiting on '@aliasA' in order to be able to validate the payload of the request to urlA. Referring to Image A, I can see that Cypress is able to match the requests to my interceptions properly. The expected payload is available in the matched interception. I didn't screenshot it but the network tab also reveals the same with the payload being available.

But on random occasions (often enough to warrant writing a bug about it), I will receive the error in Image B. When viewing the error in more details, I see "Error: Socket closed before finished writing response at...".

Image A

censored matched intercepts

Image B

censored wait error

Desired behavior

For the request.body to be available 100% of the time when waiting on the interception.

Test code to reproduce

beforeEach('setup event logs', () => {
    // All of these intercepts are in support/e2e in real implementation and called here as Cypress commands
    cy.intercept('POST', 'urlA', () => {
         req.redirect('urlB', 302);
    }).as('aliasA');
    
    cy.intercept('GET', 'urlB', () => {
         req.redirect('urlC', 302);
    }).as('aliasB');
    
    cy.intercept('GET', 'urlC', () => {
         req.continue();
    }).as('aliasC');
});

it('should have correct payloads', () => {

    cy.get('form').submit();

    cy.wait('@aliasA').then(({ request }) => {
            cy.fixture('aliasAFixture.json').then((expectedPayload) => {
                // request.body will sometimes return '' and fail the test
                expect(request.body).deep.contains(expectedPayload);
            });
        });

    cy.wait(['@aliasB', '@aliasC']);
    ...
});

Cypress Version

12.4.1 - 12.9.0

Node version

v14.17.3

Operating System

Windows 64-bit operating system Windows 10 Pro 22H2

Debug Logs

No response

Other

Other possible relevant information

  • All of the intercepts used in the example are in the separate support/e2e.js (renamed to utils/interceptions.ts for my folder structure) in the real implementation and called in the beforeEach as Cypress commands.
  • My Cypress project is in Typescript
  • I use @cypress/xpath and @faker-js/faker

Things I have tried

  • Changing the req.redirect of aliasA to req.reply
    • Added a delay of up to 1 second
    • made followRedirect true and false
    • req.headers['content-type'] = 'application/x-www-form-urlencoded' in case the request wasn't reading the body properly
  • Tried putting the assertion expect(request.body).deep.contains(expectedPayload); inside the interception itself before and after the req.redirect().
  • Tried putting a 10 second timeout in the wait('@aliasA') before accessing the fixture for the expected payload
  • Tried singling out the assertion in the wait to be the only thing in the test

SplikStick avatar Apr 04 '23 20:04 SplikStick

This issue could be related to #26248 ?

mirobo avatar Apr 05 '23 09:04 mirobo

Hi @SplikStick and sorry for the delayed response here. I am really curious about this and would love to reproduce it to debug. I feel like even with the information provided this is challenging to solve as it would involve speculating about places a race condition may be occurring that leads to this outcome X% of the time in your project.

If you are able to make something with https://github.com/cypress-io/cypress-test-tiny that reproduces this even rarely it would help.

Maybe running tests this way:

Cypress._.times(100, () => {
	// let's see what happens
  })

@mirobo it's a good point that Socket closed before ... is a good starting point and these may be related. In which case we should test this again when https://github.com/cypress-io/cypress/issues/26248 is worked on.

If we are able to reproduce the behavior in this ticket I will forward it to the team as well.

marktnoonan avatar May 15 '23 19:05 marktnoonan

In the absence of a reproduction or other activity for a week, I'm going to close this one for now. But we can open it up again when there is a reproduction available or more info to discuss, so please do update the issue with new information when ready.

marktnoonan avatar May 22 '23 20:05 marktnoonan

I have the same issue and I tried to create a reproduction without success for now. https://github.com/Akryum/cypress-issue-26431

Akryum avatar Sep 04 '23 15:09 Akryum

I repeatedly ran one specific test in the project at work, and got this error 11 times out of 20. It's making the tests very flaky :(

It is basically failing here because req.body is ''.

Details

seq 20 | xargs -I{} pnpm exec cypress run --component -s src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js

====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1068ms)
    ✓ should not be able to create a session without permission (225ms)
    ✓ should not be able to create a session with an on-demand event (72ms)
    ✓ should be able to edit a session with permission (226ms)
    ✓ should not be able to edit a session without permission (204ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1096ms)
    ✓ should not be able to create a session without permission (233ms)
    ✓ should not be able to create a session with an on-demand event (64ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:03        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:03        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1110ms)
    ✓ should not be able to create a session without permission (253ms)
    ✓ should not be able to create a session with an on-demand event (79ms)
    ✓ should be able to edit a session with permission (265ms)
    ✓ should not be able to edit a session without permission (170ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1083ms)
    ✓ should not be able to create a session without permission (240ms)
    ✓ should not be able to create a session with an on-demand event (69ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (4s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:03        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:03        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1101ms)
    ✓ should not be able to create a session without permission (232ms)
    ✓ should not be able to create a session with an on-demand event (69ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:03        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:03        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1122ms)
    ✓ should not be able to create a session without permission (238ms)
    ✓ should not be able to create a session with an on-demand event (69ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1041ms)
    ✓ should not be able to create a session without permission (212ms)
    ✓ should not be able to create a session with an on-demand event (61ms)
    ✓ should be able to edit a session with permission (250ms)
    ✓ should not be able to edit a session without permission (180ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1026ms)
    ✓ should not be able to create a session without permission (214ms)
    ✓ should not be able to create a session with an on-demand event (61ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1025ms)
    ✓ should not be able to create a session without permission (225ms)
    ✓ should not be able to create a session with an on-demand event (64ms)
    ✓ should be able to edit a session with permission (243ms)
    ✓ should not be able to edit a session without permission (177ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1062ms)
    ✓ should not be able to create a session without permission (222ms)
    ✓ should not be able to create a session with an on-demand event (62ms)
    ✓ should be able to edit a session with permission (248ms)
    ✓ should not be able to edit a session without permission (164ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1057ms)
    ✓ should not be able to create a session without permission (217ms)
    ✓ should not be able to create a session with an on-demand event (63ms)
    ✓ should be able to edit a session with permission (251ms)
    ✓ should not be able to edit a session without permission (169ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1079ms)
    ✓ should not be able to create a session without permission (210ms)
    ✓ should not be able to create a session with an on-demand event (68ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:03        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:03        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1102ms)
    ✓ should not be able to create a session without permission (242ms)
    ✓ should not be able to create a session with an on-demand event (67ms)
    ✓ should be able to edit a session with permission (256ms)
    ✓ should not be able to edit a session without permission (186ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1035ms)
    ✓ should not be able to create a session without permission (213ms)
    ✓ should not be able to create a session with an on-demand event (62ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1029ms)
    ✓ should not be able to create a session without permission (221ms)
    ✓ should not be able to create a session with an on-demand event (74ms)
    ✓ should be able to edit a session with permission (255ms)
    ✓ should not be able to edit a session without permission (171ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1068ms)
    ✓ should not be able to create a session without permission (228ms)
    ✓ should not be able to create a session with an on-demand event (72ms)
    ✓ should be able to edit a session with permission (282ms)
    ✓ should not be able to edit a session without permission (169ms)


  5 passing (2s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        5        5        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        5        5        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1031ms)
    ✓ should not be able to create a session without permission (234ms)
    ✓ should not be able to create a session with an on-demand event (66ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:03        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:03        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1048ms)
    ✓ should not be able to create a session without permission (223ms)
    ✓ should not be able to create a session with an on-demand event (65ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1058ms)
    ✓ should not be able to create a session without permission (222ms)
    ✓ should not be able to create a session with an on-demand event (64ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1068ms)
    ✓ should not be able to create a session without permission (232ms)
    ✓ should not be able to create a session with an on-demand event (66ms)
    (Attempt 1 of 3) should be able to edit a session with permission
    (Attempt 2 of 3) should be able to edit a session with permission
    1) should be able to edit a session with permission
    (Attempt 1 of 3) should not be able to edit a session without permission
    (Attempt 2 of 3) should not be able to edit a session without permission
    2) should not be able to edit a session without permission


  3 passing (3s)
  2 failing

  1) Dashboard - Events - Sessions - Session Management - Create
       should be able to edit a session with permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)

  2) Dashboard - Events - Sessions - Session Management - Create
       should not be able to edit a session without permission:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:751:11)
      at new Source2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:842:37)
      at new Parser2 (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1394:53)
      at parse (http://localhost:9001/__cypress/src/node_modules/.vite/deps/chunk-3POMOEZK.js?v=49eabcde:1358:16)
      at processGraphQLRequest (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:89:21)
      at <unknown> (http://localhost:9001/__cypress/src/tests/cypress/support/graphql.js:111:28)
      at <unknown> (http://localhost:9001/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:9001/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:9001/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:9001/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  6                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 seconds                                                                        │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed).png                             
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 2).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should be able to edit a session with permission (failed) (attempt 3).png                 
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed).png                      
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 2               
     ).png                                                                                          
  -  /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/screenshots/     (1280x720)
     SectionSessions.cy.js/Dashboard - Events - Sessions - Session Management - Creat               
     e -- should not be able to edit a session without permission (failed) (attempt 3               
     ).png                                                                                          


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  SectionSessions.cy.js                    00:02        5        3        2        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     00:02        5        3        2        -        -  

Akryum avatar Sep 05 '23 12:09 Akryum

Interestingly if I only run one test in that test file, I never get the error out of the 20 runs:

Details

====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1275ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1237ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1278ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1220ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1267ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1230ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1199ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1194ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1227ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1254ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1214ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1214ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1245ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1226ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1187ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1166ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1189ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1239ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1234ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (SectionSessions.cy.js)                                                │
  │ Searched:       src/dashboard/components/EventTypePage/sections/SectionSessions.cy.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  SectionSessions.cy.js                                                           (1 of 1)


  Dashboard - Events - Sessions - Session Management - Create
    ✓ should be able to create a session with permission (1246ms)


  1 passing (1s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 second                                                                         │
  │ Spec Ran:     SectionSessions.cy.js                                                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Video output: /home/akryum/Projects/livestorm-app/packages/frontend/tests/cypress/videos/SectionSessions.cy.js.mp4


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✔  SectionSessions.cy.js                    00:01        1        1        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✔  All specs passed!                        00:01        1        1        -        -        -  

Akryum avatar Sep 05 '23 12:09 Akryum

I'm able to reproduce the error in the reproduction I shared above (https://github.com/Akryum/cypress-issue-26431) (updated today)

Example of terminal output:

Details


====================================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        13.1.0                                                                         │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v16.20.2 (/home/akryum/.local/share/pnpm/nodejs/16.20.2/bin/node)              │
  │ Specs:          1 found (Meow.cy.js)                                                           │
  │ Searched:       **/*.cy.{js,jsx,ts,tsx}                                                        │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  Meow.cy.js                                                                      (1 of 1)


  Meow.vue
    ✓ loads meows (154ms)
    ✓ no meows (22ms)
    1) one meow
    2) one more meow
    ✓ no meows again (39ms)
    3) loads meows again?


  3 passing (903ms)
  3 failing

  1) Meow.vue
       one meow:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:669:11)
      at new Source2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:740:33)
      at new Parser2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1258:49)
      at parse (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1239:16)
      at processGraphQLRequest (http://localhost:5173/__cypress/src/cypress/support/graphql.js:27:21)
      at <unknown> (http://localhost:5173/__cypress/src/cypress/support/graphql.js:49:28)
      at <unknown> (http://localhost:5173/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:5173/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:5173/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:5173/__cypress/runner/cypress_runner.js:137200:64)

  2) Meow.vue
       one more meow:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:669:11)
      at new Source2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:740:33)
      at new Parser2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1258:49)
      at parse (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1239:16)
      at processGraphQLRequest (http://localhost:5173/__cypress/src/cypress/support/graphql.js:27:21)
      at <unknown> (http://localhost:5173/__cypress/src/cypress/support/graphql.js:49:28)
      at <unknown> (http://localhost:5173/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:5173/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:5173/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:5173/__cypress/runner/cypress_runner.js:137200:64)

  3) Meow.vue
       loads meows again?:
     Error: Body must be a string. Received: undefined.
      at devAssert (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:669:11)
      at new Source2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:740:33)
      at new Parser2 (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1258:49)
      at parse (http://localhost:5173/__cypress/src/node_modules/.vite/deps/chunk-4IX6L4QI.js?v=784f6a21:1239:16)
      at processGraphQLRequest (http://localhost:5173/__cypress/src/cypress/support/graphql.js:27:21)
      at <unknown> (http://localhost:5173/__cypress/src/cypress/support/graphql.js:49:28)
      at <unknown> (http://localhost:5173/__cypress/runner/cypress_runner.js:137201:12)
      at tryCatcher (http://localhost:5173/__cypress/runner/cypress_runner.js:1807:23)
      at Promise.attempt.Promise.try (http://localhost:5173/__cypress/runner/cypress_runner.js:4315:29)
      at onBeforeRequest (http://localhost:5173/__cypress/runner/cypress_runner.js:137200:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        6                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      3                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  3                                                                                │
  │ Video:        false                                                                            │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     Meow.cy.js                                                                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /home/akryum/Projects/demos/repros/cypress-issue-26431/cypress/screenshots/Meow.     (1280x720)
     cy.js/Meow.vue -- one meow (failed).png                                                        
  -  /home/akryum/Projects/demos/repros/cypress-issue-26431/cypress/screenshots/Meow.     (1280x720)
     cy.js/Meow.vue -- one more meow (failed).png                                                   
  -  /home/akryum/Projects/demos/repros/cypress-issue-26431/cypress/screenshots/Meow.     (1280x720)
     cy.js/Meow.vue -- loads meows again (failed).png                                               


====================================================================================================

  (Run Finished)


       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  Meow.cy.js                               905ms        6        3        3        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  1 of 1 failed (100%)                     905ms        6        3        3        -        -  

 ELIFECYCLE  Command failed with exit code 3.

Akryum avatar Sep 05 '23 13:09 Akryum

Putting .only on the first test in Meow.cy.js seems to significantly reduce the number of error (I don't get any on 20 runs).

Akryum avatar Sep 05 '23 13:09 Akryum

This is very helpful, thanks @Akryum! I'm going to re-open the issue.

marktnoonan avatar Sep 05 '23 13:09 marktnoonan

@Akryum I did get this to reproduce with your repo, though only saw the failure in 2/100 runs. Also I needed to install Vue into the project - if you can update the package.json to include Vue at a specific version that would be helpful.

Given that we have different rates of failure and likely different specs on our machines, I am curious if you increase the resources available in CI do you see a decline in flake related to this issue? Not suggesting it as a permanent change, just to help confirm if it's resource related.

marktnoonan avatar Sep 06 '23 13:09 marktnoonan

would be great to have it fixed. this struck us constantly with out runs...

romek-buildops avatar Nov 23 '23 13:11 romek-buildops

I have the same issue on version v13.6.2

jorge-graca-sky avatar Jan 04 '24 18:01 jorge-graca-sky

Same with 13.6.1 it's a real drag (of course I love and appreciate cypress and its devs though!). I will add as well, that I've only looked at this locally so far, and it does seem like a resource issue. If I start the test runner, and run the offending test, it appears to work consistently on that first run, but then with a super high failure rate thereafter (i.e. response.body = '').

If anyone has some easy work arounds beyond re-engineering the whole test would love to know.

ahammouda avatar Jan 20 '24 21:01 ahammouda

Hello @jennifer-shehane can you please tell when this can be taken? Would be great to have this fixed

romek-buildops avatar Feb 14 '24 21:02 romek-buildops

@romek-buildops We would review a PR to address this, our team is not currently prioritizing this.

jennifer-shehane avatar Feb 16 '24 15:02 jennifer-shehane