Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cypress open not working #30925

Open
MartinLednarLedo opened this issue Jan 22, 2025 · 1 comment
Open

cypress open not working #30925

MartinLednarLedo opened this issue Jan 22, 2025 · 1 comment
Labels
stage: needs information Not enough info to reproduce the issue

Comments

@MartinLednarLedo
Copy link

MartinLednarLedo commented Jan 22, 2025

Current behavior

Hi,

I have migrated my older project to Vite 6 and I wanted to try Cypress for e2e tests. After installing via npm i cypress --save-dev and running npx cypress open the cypress window is opened I see the loading spinner but in terminal i get

DevTools listening on ws://127.0.0.1:61172/devtools/browser/2f003097-2fcf-41b0-9a91-5717591641cc

node:internal/modules/run_main:123
    triggerUncaughtException(
    ^
TypeError [Error]: value.replace is not a function
    at normalizeSlashes (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/util.js:62:18)
    at Object.getExtendsConfigPath (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/ts-internals.js:24:54)
    at readConfig (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/configuration.js:127:64)
    at findAndReadConfig (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/configuration.js:50:84)
    at create (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/index.js:143:69)
    at register (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/index.js:124:19)
    at Object.registerAndCreateEsmHooks (/Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/dist/esm.js:25:49)
    at file:///Users/martinlednar/Library/Caches/Cypress/14.0.0/Cypress.app/Contents/Resources/app/node_modules/ts-node/esm/transpile-only.mjs:8:7
    at ModuleJob.run (node:internal/modules/esm/module_job:262:25)
    at async onImport.tracePromise.__proto__ (node:internal/modules/esm/loader:482:26)

These are my dependencies

 "devDependencies": {
        "@chromatic-com/storybook": "^3.2.3",
        "@kazupon/vue-i18n-loader": "^0.5.0",
        "@riesenia/fe-configs": "^2.0.2",
        "@rollup/plugin-inject": "^5.0.5",
        "@storybook/addon-essentials": "^8.4.7",
        "@storybook/addon-interactions": "^8.4.7",
        "@storybook/addon-onboarding": "^8.4.7",
        "@storybook/blocks": "^8.4.7",
        "@storybook/test": "^8.4.7",
        "@storybook/vue3": "^8.4.7",
        "@storybook/vue3-vite": "^8.4.7",
        "@testing-library/vue": "^8.1.0",
        "@tsconfig/node22": "^22.0.0",
        "@types/axios": "^0.9.36",
        "@types/jquery": "^3.5.32",
        "@types/lodash.debounce": "^4.0.9",
        "@types/node": "^22.10.5",
        "@types/smoothscroll-polyfill": "^0.3.4",
        "@types/underscore": "^1.13.0",
        "@types/wnumb": "^1.2.3",
        "@vitejs/plugin-vue": "^5.2.1",
        "@vitest/eslint-plugin": "^1.1.25",
        "@vue/tsconfig": "^0.7.0",
        "cypress": "^14.0.0",
        "jsdom": "^26.0.0",
        "sass": "^1.39.0",
        "storybook": "^8.4.7",
        "typescript": "^5.7.2",
        "typescript-eslint": "^8.20.0",
        "vite": "5.4.11",
        "vite-plugin-checker": "^0.8.0",
        "vite-plugin-live-reload": "^3.0.4",
        "vitest": "^3.0.3",
        "vue-eslint-parser": "^9.4.3",
        "vue-loader": "^15.10.1",
        "vue-tsc": "~2.1.6"
    },
    "dependencies": {
        "axios": "^1.7.9",
        "bootstrap-multiselect": "^0.9.15",
        "bootstrap-notify": "^3.1.3",
        "easytimer.js": "^4.3.1",
        "flatpickr": "^4.6.13",
        "jquery": "~1.12.4",
        "jquery-validation": "^1.19.2",
        "lg-video": "^1.3.0",
        "lightgallery": "^1.9.0",
        "nouislider": "^15.7.1",
        "smoothscroll-polyfill": "^0.4.4",
        "sweetalert2": "^10.10.1",
        "swiper": "^8.1.4",
        "tippy.js": "^6.2.7",
        "underscore": "^1.8.3",
        "uninstall": "^0.0.0",
        "vanilla-lazyload": "^17.4.0",
        "vue": "^3.5.13",
        "vue-i18n": "^10.0.5",
        "vue-virtual-scroll-list": "^2.3.5",
        "vuex": "^4.1.0",
        "wnumb": "^1.2.0"
    }

When i tried fresh installation in my Nuxt3 apps, they are using Vite v5.4.11 the Cypress works fine. That's why I tried this version also in my project, but it didn't help.

Also I dont know if it's relevant, but in my project the installation of cypress takes signifcantly more time than in nuxt projects.

Could you suggest what am I doing wrong? Thank you very much for any help

Desired behavior

No response

Test code to reproduce

Don't have any tests and the unfortunately repo is private.

Cypress Version

14.0.0

Node version

22.7.0

Operating System

MacOS 14.7.1

Debug Logs

Other

No response

@MartinLednarLedo MartinLednarLedo changed the title cypress open not working in Vite 6 project cypress open not workin, probably because of Vite 6 Jan 22, 2025
@MartinLednarLedo MartinLednarLedo changed the title cypress open not workin, probably because of Vite 6 cypress open not working, probably because of Vite 6 Jan 22, 2025
@MartinLednarLedo MartinLednarLedo changed the title cypress open not working, probably because of Vite 6 cypress open not working Jan 22, 2025
@AtofStryker
Copy link
Contributor

Hi @MartinLednarLedo. Thank you for opening an issue. I have created a repository with a basic reproduction but I am unable to reproduce. Are you able to help me fill in the blanks?

@jennifer-shehane jennifer-shehane added the stage: needs information Not enough info to reproduce the issue label Jan 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stage: needs information Not enough info to reproduce the issue
Projects
None yet
Development

No branches or pull requests

3 participants