https://cypress.io logo
Join Discord
Powered by
# general-chat
  • l

    late-planet-4481

    06/22/2022, 4:48 PM
    @hundreds-library-57018 , consider setting your tests to be triggered by CI. When you do this properly the Git information will flow into the test run, and you can see exactly which pull request triggered the test. This will infer not only the team, but also the person and the pull request, so you'll know exactly which changes cause failures.
  • h

    hundreds-library-57018

    06/22/2022, 5:01 PM
    We're already doing this, Let's imagine the following scenario: I push a test which is flaky, during PR it passes. Another contributor (from another team) eventually creates a PR and merges it, my test will fail under his/her commit on master, git information would tell that another person/team is responsible for the failure. What I was thinking (and I'm not sure if it's possible) to instead of attaching a tag to a run (which has more than one thousand tests running) attaching a tag to each test individually (or something similar). So it doesn't matter much who triggered the run, we focus instead of the tests.
  • l

    late-planet-4481

    06/22/2022, 5:03 PM
    > What I was thinking (and I'm not sure if it's possible) to instead of attaching a tag to a run (which has more than one thousand tests running) attaching a tag to each test individually (or something similar). So it doesn't matter much who triggered the run, we focus instead of the tests. Ah I see, so some sort of metadata giving a single person or group ownership of a test? I can't think of anything built-in to help with this. Hmmm.
  • a

    abundant-musician-88272

    06/23/2022, 5:50 AM
    Hello team , cypress10.2.0 is stable or not??
  • a

    abundant-musician-88272

    06/23/2022, 5:51 AM
    no docs about cypress 10 in what's new page
  • m

    mammoth-manchester-71430

    06/23/2022, 5:51 AM
    Hi @rough-monitor-85122
  • m

    mammoth-manchester-71430

    06/23/2022, 5:54 AM
    Need to send an email from Cypress, but it returns 'will not send email results'. configured the cypress-email-results plugins https://github.com/bahmutov/cypress-email-results, but email not triggered, needed support on this
  • r

    rough-monitor-85122

    06/23/2022, 6:11 AM
    DMing and pinging random people with roles is not a good way to get support. There is a #763097415896268840 channel that explains better ways. ๐Ÿ™‚
  • r

    rough-monitor-85122

    06/23/2022, 6:11 AM
    It's nearly midnight and I'm on my way to bed.
  • p

    powerful-orange-86819

    06/23/2022, 7:41 AM
    https://github.com/cypress-io/cypress-docker-images/tree/master/browsers Anyone know why this repos hasn't been updated with new browser versions
  • p

    powerful-orange-86819

    06/23/2022, 11:32 AM
    My approach is creating custom commands that take optional properties, that also makes separating the code from tests more clear, leaving only actions and assertion in the spec/cy files and all the necessary dependencies and custom function in their respective .js files
  • g

    gray-kilobyte-89541

    06/23/2022, 3:38 PM
    watching Front-End Test Fest https://vshow.on24.com/vshow/Applitools/?regPageId=20976#home
  • m

    magnificent-finland-58048

    06/23/2022, 4:19 PM
    I just migrated a cy 10 repo to React 18 from 17 https://github.com/muratkeremozcan/react-hooks-in-action-with-cypress/pull/154 no issues cy 9 had issues with React 18 ,
  • c

    crooked-easter-63692

    06/23/2022, 4:52 PM
    hello can any one help nme i have the problem, if install with npm i have a cypress.json and cypress.config.ts that leads to an error in ci and localy
  • s

    silly-journalist-41771

    06/23/2022, 6:21 PM
    anyone had this error before?
  • g

    glamorous-country-57678

    06/23/2022, 8:53 PM
    Hey everybody, I have a general question about testing UI without any backend. Would the best practice be to use the intercept method or is there a better way?
  • f

    fresh-doctor-14925

    06/23/2022, 8:59 PM
    Yeah, thatโ€™s how Iโ€™ve done this. We have a frontend app that we used to have a lot of e2e tests, I used intercept to stub the backend responses. Eventual plan is to move most of the tests over to the component test runner
  • f

    fancy-bird-35714

    06/24/2022, 2:30 AM
    Help me on this
  • b

    bitter-fountain-36713

    06/24/2022, 2:37 AM
    Your selector does not exist in the DOM. You can break it up into
    .get()
    +
    .find()
    to see which command fails.
  • f

    fancy-bird-35714

    06/24/2022, 2:38 AM
    How
  • f

    fancy-bird-35714

    06/24/2022, 2:38 AM
    Write
  • f

    fancy-bird-35714

    06/24/2022, 2:39 AM
    Explain
  • b

    bitter-fountain-36713

    06/24/2022, 2:41 AM
    Well, a quick example:
    Copy code
    // .parent > .child > .child-of-child
    cy.get('.parent')
      .find('.child')
      .find('.child-of-child')
  • s

    stale-optician-85950

    06/24/2022, 8:16 AM
    Hello all, where do you recommend is best to raise this issue? "GitHub Actions table formatting of Cypress data has become messed up" I already raised it in GitHub Community but got no response there https://github.community/t/github-actions-table-formatting-of-cypress-data-has-become-messed-up/257450 as this did not occur during a Cypress version change, I'm assuming it was a change to GH Actions itself.
  • c

    cuddly-thailand-33926

    06/24/2022, 8:30 AM
    When running npx Cypress open it is opening the default spec files instead of mine, how do I get it to show mine?
  • f

    fresh-doctor-14925

    06/24/2022, 8:32 AM
    place your specs in the
    cypress/e2e
    folder. that'll do it
  • c

    cuddly-thailand-33926

    06/24/2022, 8:33 AM
    Tkuuu ๐Ÿ™
  • c

    cuddly-thailand-33926

    06/24/2022, 8:35 AM
    It's still showing the default specs (which are not in my project) @fresh-doctor-14925
  • f

    fresh-doctor-14925

    06/24/2022, 8:36 AM
    You sure you're running cypress from your project folder? Sounds like you're maybe in the wrong directory
  • c

    cuddly-thailand-33926

    06/24/2022, 8:47 AM
    Yep, I had 2 Cypress folders for some reason ๐Ÿ˜…
1...555657...127Latest