Home > OS >  Cypress : can cypress run at another IDEA?
Cypress : can cypress run at another IDEA?

Time:03-16

after we read the topic about testing web dengan cypress, is cypress can works at another IDEA like Xcode or etc

CodePudding user response:

Refer this, https://docs.cypress.io/guides/tooling/IDE-integration

Further, There are many third-party IDE extensions and plugin to help you integrate your IDE with Cypress, we will be looking at some of them.

Visual Studio Code

Cypress Fixture-IntelliSense: This plugin supports your cy.fixture() and cy.route(..., fixture:) commands by providing intellisense for existing fixtures. Cypress Helper: Cypress helpers are various helpers and commands for integration with Cypress. Cypress Snippets: These are useful Cypress code snippets. Open Cypress: Enables you to open Cypress specs and single it() blocks directly from VS Code. Test Utils: Easily add or remove .only and .skip modifiers using keyboard shortcuts or the command palette. IntelliJ Platform

Cypress is compatible with IntelliJ IDEA, AppCode, CLion, GoLand, PhpStorm, PyCharm, Rider, RubyMine, and WebStorm.

Cypress Support: This plugin integrates Cypress under the common Intellij test framework. Cypress Support Pro: This is an improved version of the Cypress Support plugin with debugging from the IDE, advanced autocomplete, built-in recorder and other features.

CodePudding user response:

Cypress can be run on any other editor/IDE integration tools because it will find available text editor files on your system, such as Finder, Atom, Visual Studio Code, Emacs, etc.

  • Related