fresh-doctor-14925
06/07/2022, 9:40 AMwaitUntil
(from the cypress-wait-until
library), and they didn't play nicely together
Did you ever find a solution to this?cold-accountant-75560
06/07/2022, 10:03 AMfresh-doctor-14925
06/07/2022, 10:15 AMmammoth-fish-55706
06/07/2022, 10:30 AMtitle
from the button thoughgray-father-52711
06/07/2022, 10:47 AMcy.get('button.foo').invoke('attr', 'title').should('have.length', 11)
wooden-family-9570
06/07/2022, 10:52 AMhandsome-traffic-40130
06/07/2022, 10:56 AM'cypress' should be listed in the project's dependencies, not devDependencies.
how i can fix? if it have to be not in devDeps can you say why?( the error in cypress.config.ts file)cold-accountant-75560
06/07/2022, 11:00 AMfresh-doctor-14925
06/07/2022, 11:07 AMcold-accountant-75560
06/07/2022, 11:26 AMaloof-doctor-27406
06/07/2022, 11:54 AMfresh-doctor-14925
06/07/2022, 12:06 PMfresh-doctor-14925
06/07/2022, 12:07 PMhundreds-action-33616
06/07/2022, 1:44 PMgray-kilobyte-89541
06/07/2022, 2:21 PMbrave-apartment-73149
06/07/2022, 2:39 PMThe Test Runner unexpectedly exited via a close event with signal SIGSEGV
That's how my docker-compose looks like.
version: '3'
services:
cypress:
image: "cypress/included:10.0.3"
environment:
- DEBUG=cypress:*
- DISPLAY=
command: "--config-file e2e/cypress.json --browser chrome"
volumes:
- ./e2e/integration-test:/e2e
gray-kilobyte-89541
06/07/2022, 2:42 PMjs
cy.get('button.foo').should('have.attr', 'title').its('length').should('equal', 11)
astonishing-animal-70542
06/07/2022, 3:27 PMabundant-apple-80156
06/07/2022, 4:27 PMtestcase.name
in the xml output with a custom field you add in testrail.
The problem I'm running in to is that in the xml output from the test run, testcase.name
is a concatenation of the describe text and the it text from the case. Is there any way to override this or add something to my case to specify this value in the junit output?abundant-apple-80156
06/07/2022, 4:31 PMgray-kilobyte-89541
06/07/2022, 5:20 PMstale-gigabyte-61333
06/07/2022, 5:29 PMgray-kilobyte-89541
06/07/2022, 5:48 PMabundant-dress-88149
06/07/2022, 6:19 PMcy.wait()
for calls to make sure the data is there before the assert, other tests got fixed by replacing .then($el => {...})
with .should
so im assuming the tests get stuck if they try to assert before time (imo they should fail since assert was not passing).
I know this is caused by not following good practices when creating the tests but do you know if there is a way to force cypress to fail or log an error if this happens? I'm trying to fix them and takes a long time identify these things.
or maybe other thing you recommend to approach this?abundant-apple-80156
06/07/2022, 6:22 PMabundant-dress-88149
06/07/2022, 6:22 PMabundant-apple-80156
06/07/2022, 6:24 PMabundant-dress-88149
06/07/2022, 6:27 PMabundant-dress-88149
06/07/2022, 6:28 PMcolossal-car-14055
06/07/2022, 6:31 PM