You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**and**[Cypress Cloud](/guides/cloud/introduction) for recording tests, surfacing test results, and providing test analytics.
60
61
61
62
-**First:** Cypress helps you set up and start writing tests every day while
62
63
you build your application locally. _TDD at its best!_
63
64
-**Later:** After building up a suite of tests and
64
65
[integrating Cypress](/guides/continuous-integration/introduction) with your
65
66
CI Provider, [Cypress Cloud](/guides/cloud/introduction) can record your test
66
-
runs. You'll never have to wonder: _Why did this fail?_
67
+
runs surfacing exactly what happened during the test in [Test Replay](/guides/cloud/test-replay). You'll never have to wonder: _Why did this fail?_
67
68
68
69
## Our mission
69
70
70
-
Our mission is to build a thriving, open source ecosystem that enhances
71
+
Our mission is to build a thriving testing solution that enhances
71
72
productivity, makes testing an enjoyable experience, and generates developer
72
73
happiness. We hold ourselves accountable to champion a testing process **that
73
74
actually works**.
@@ -95,7 +96,9 @@ that makes everyone happy.
95
96
## Features
96
97
97
98
Cypress comes fully baked, batteries included. Here is a list of things it can
98
-
do that no other testing framework can:
99
+
do:
100
+
101
+
#### Cypress App
99
102
100
103
-**Time Travel:** Cypress takes snapshots as your tests run. Hover over
101
104
commands in the [Command Log](/guides/core-concepts/cypress-app#Command-Log)
@@ -115,12 +118,13 @@ do that no other testing framework can:
115
118
involving your server. You can stub network traffic however you like.
116
119
-**Consistent Results:** Our architecture doesn't use Selenium or WebDriver.
117
120
Say hello to fast, consistent and reliable tests that are flake-free.
118
-
-**Screenshots, Videos, and Test Replay:** View screenshots taken automatically on failure,
119
-
or videos, if enabled, of your entire test suite when run from the CLI. Record
120
-
to [Cypress Cloud](/guides/cloud/introduction) and replay the test as it executed during the run for zero-configuration debugging using [Test Replay](/guides/cloud/test-replay).
121
121
-**Cross Browser Testing:** Run tests within Firefox and Chrome-family browsers
122
122
(including Edge and Electron) locally and
123
-
[optimally in a Continuous Integration pipeline](/guides/guides/cross-browser-testing).
123
+
[in a Continuous Integration pipeline](/guides/guides/cross-browser-testing).
124
+
125
+
#### Cypress Cloud
126
+
127
+
**Test Replay:** Record to [Cypress Cloud](/guides/cloud/introduction) and replay the test exactly as it executed during the run for zero-configuration debugging using [Test Replay](/guides/cloud/test-replay).
124
128
-**Smart Orchestration:** Once you're set up to record to Cypress Cloud, easily
125
129
[parallelize](/guides/cloud/smart-orchestration/parallelization) your test
126
130
suite, rerun failed specs first with
@@ -130,35 +134,67 @@ do that no other testing framework can:
130
134
tight feedback loops.
131
135
-**Flake Detection:** Discover and diagnose unreliable tests with Cypress
132
136
Cloud's [Flaky test management](/guides/cloud/flaky-test-management).
137
+
-**Branch Review:** Quickly identify the impact a pull request might have on your test suite in a single view using [Branch Review](/guides/cloud/branch-review). Compare which tests are failing, flaky, pending, added, or modified between the source and base branches and prevent the merging of low-quality code.
138
+
-**Integrations:** Integrate with [GitHub](/guides/cloud/integrations/source-control/github), [GitLab](/guides/cloud/integrations/source-control/gitlab), or [Bitbucket](/guides/cloud/integrations/source-control/bitbucket) to see test results directly on every push or pull request. Cypress Cloud also integrates with
139
+
[Slack](/guides/cloud/integrations/slack), [Jira](/guides/cloud/integrations/jira), and [Microsoft Teams](/guides/cloud/integrations/teams) to keep your team in the loop.
140
+
-**Test Analytics:** Track test results over time with [Test Analytics](/guides/cloud/analytics) to identify trends, regressions, and improvements in your test suite. Use our [Data Extract API](/guides/cloud/integrations/data-extract-api) to extract the data that is important to your team.
133
141
134
-
### <Iconname="cog" /> Setting up tests
142
+
### <Iconname="cog" /> Set up tests
135
143
136
144
There are no servers, drivers, or any other dependencies to install or
137
-
configure. You can quickly see your first passing test using template example test specs for
145
+
configure. You can quickly see your first passing test within minutes for
138
146
[End-to-end tests](/guides/end-to-end-testing/writing-your-first-end-to-end-test) or
0 commit comments