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
Merge branch 'unified-desktop-gui' into tgriesser/unify/ui-data-push
* unified-desktop-gui: (40 commits)
feat: index.html configurability and storybook support (#18242)
fix: remove .json check from require_async, prevent child_process spawn (#18416)
percy snapshot the tooltip visually, prevent it from being hidden
fix: failing tests from #18372 (#18414)
fix: `everyNthFrame` should only be applied for Chrome 89+ (#18392)
feat(app): render spec list, command log, iframe (#18372)
fix: drag and drop to be correct directory (#18400)
refactor: Add GitDataSource, FileDataSource, toast for errors (#18385)
docs: General updates to contributing guide (#18283)
Add shorter --ct alias for --component
Add --e2e and --component CLI options
chore: Update Chrome (beta) to 95.0.4638.40 (#18389)
chore: use circleci timings split for e2e tests (#18367)
fix: fixed title (#18370)
chore(deps): update dependency electron to v14 🌟 (#18384)
chore(server): share client route (#18215)
fix: Prevent Cypress from crashing when argument parsing "spec: {}" (#18312)
chore: update husky dev dependency to v7 (#18345)
feat: add defineConfig function to help type config (#18302)
chore: Update Chrome (stable) to 94.0.4606.71 (#18324)
...
Copy file name to clipboardexpand all lines: cli/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ yarn test-watch --scope cypress
29
29
yarn test-debug --scope cypress
30
30
```
31
31
32
-
### Updating snaphots
32
+
### Updating snapshots
33
33
34
34
Prepend `SNAPSHOT_UPDATE=1` to any test command. See [`snap-shot-it` instructions](https://github.com/bahmutov/snap-shot-it#advanced-use) for more info.
Copy file name to clipboardexpand all lines: cli/__snapshots__/cli_spec.js
+4
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,12 @@ exports['shows help for open --foo 1'] = `
21
21
-c, --config <config> sets configuration values. separate multiple
22
22
values with a comma. overrides any value in
23
23
cypress.json.
24
+
--ct, --component runs component tests
24
25
-C, --config-file <config-file> path to JSON file where configuration values
25
26
are set. defaults to "cypress.json". pass
26
27
"false" to disable.
27
28
-d, --detached [bool] runs Cypress application in detached mode
29
+
--e2e runs end to end tests
28
30
-e, --env <env> sets environment variables. separate
29
31
multiple values with a comma. overrides any
30
32
value in cypress.json or cypress.env.json
@@ -64,8 +66,10 @@ exports['shows help for run --foo 1'] = `
64
66
Options:
65
67
-b, --browser <browser-name-or-path> runs Cypress in the browser with the given name. if a filesystem path is supplied, Cypress will attempt to use the browser at that path.
66
68
--ci-build-id <id> the unique identifier for a run on your CI provider. typically a "BUILD_ID" env var. this value is automatically detected for most CI providers
69
+
--ct, --component runs component tests
67
70
-c, --config <config> sets configuration values. separate multiple values with a comma. overrides any value in cypress.json.
68
71
-C, --config-file <config-file> path to JSON file where configuration values are set. defaults to "cypress.json". pass "false" to disable.
72
+
--e2e runs end to end tests
69
73
-e, --env <env> sets environment variables. separate multiple values with a comma. overrides any value in cypress.json or cypress.env.json
70
74
--group <name> a named group for recorded runs in the Cypress Dashboard
71
75
-k, --key <record-key> your secret Record Key. you can omit this if you set a CYPRESS_RECORD_KEY environment variable.
Copy file name to clipboardexpand all lines: cli/lib/cli.js
+6
Original file line number
Diff line number
Diff line change
@@ -106,10 +106,12 @@ const descriptions = {
106
106
cachePath: 'print the path to the binary cache',
107
107
cacheSize: 'Used with the list command to show the sizes of the cached folders',
108
108
ciBuildId: 'the unique identifier for a run on your CI provider. typically a "BUILD_ID" env var. this value is automatically detected for most CI providers',
109
+
component: 'runs component tests',
109
110
config: 'sets configuration values. separate multiple values with a comma. overrides any value in cypress.json.',
110
111
configFile: 'path to JSON file where configuration values are set. defaults to "cypress.json". pass "false" to disable.',
111
112
detached: 'runs Cypress application in detached mode',
112
113
dev: 'runs cypress in development and bypasses binary check',
114
+
e2e: 'runs end to end tests',
113
115
env: 'sets environment variables. separate multiple values with a comma. overrides any value in cypress.json or cypress.env.json',
0 commit comments