mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-07 15:31:30 -05:00
ffd4331aa5
* add packages/server experiments * show experiments in desktop GUI * add intro experiments text * conditional message * add experiments record to start of the headless run * keep experiments in the config, remove duplicate logic * small tweaks * remove experimentalComponentTesting for now, separate PR * rearrange settings spec into sections per panel * do not crash if there are no experiments * return component testing experiment * work on styling of experiments panel + adding basic tests * update settings spec text * add unit tests for experimental features in cypress run output * Add styling for 'non-enabled' status sign. * add more experiments and key whitelist in experiments GUI * add message when there are no experiments * fix coffeelint * fix merge in settings spec * trailing whitespace * make experiments info all live in one place * add ts lint exception * update unit test * update run spec * do not show experiments panel at all without experiments * add more comments * Update style of ON/OFF status for experimental features. * remove empty messaging from experiments panel (since panel is no longer shown when empty) * remove check for 'isEmpty' when showing list * update lock file Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
26 lines
3.0 KiB
JavaScript
26 lines
3.0 KiB
JavaScript
exports['enabled experiments'] = `
|
|
┌────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
│ Cypress: 1.2.3 │
|
|
│ Browser: Electron 99 (headless) │
|
|
│ Specs: 0 found () │
|
|
│ Experiments: experimentalFeatureA=true,experimentalFeatureB=4 │
|
|
└────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
`
|
|
|
|
exports['some enabled experiments'] = `
|
|
┌────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
│ Cypress: 1.2.3 │
|
|
│ Browser: Electron 99 (headless) │
|
|
│ Specs: 0 found () │
|
|
│ Experiments: experimentalFeatureB=4 │
|
|
└────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
`
|
|
|
|
exports['without enabled experiments'] = `
|
|
┌────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
│ Cypress: 1.2.3 │
|
|
│ Browser: Electron 99 (headless) │
|
|
│ Specs: 0 found () │
|
|
└────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
`
|