feat(angular): deprecate generating e2e tests with protractor (#11254)
This commit is contained in:
parent
8075cb9a9f
commit
d372be0043
@ -170,7 +170,7 @@
|
|||||||
"e2eTestRunner": {
|
"e2eTestRunner": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["protractor", "cypress", "none"],
|
"enum": ["protractor", "cypress", "none"],
|
||||||
"description": "Test runner to use for end to end (E2E) tests.",
|
"description": "Test runner to use for end to end (E2E) tests. The `protractor` option is deprecated and it will be removed in v15.",
|
||||||
"default": "cypress"
|
"default": "cypress"
|
||||||
},
|
},
|
||||||
"tags": {
|
"tags": {
|
||||||
|
|||||||
@ -107,7 +107,7 @@
|
|||||||
"e2eTestRunner": {
|
"e2eTestRunner": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": ["protractor", "cypress", "none"],
|
"enum": ["protractor", "cypress", "none"],
|
||||||
"description": "Test runner to use for end to end (E2E) tests.",
|
"description": "Test runner to use for end to end (E2E) tests. The `protractor` option is deprecated and it will be removed in v15.",
|
||||||
"default": "cypress"
|
"default": "cypress"
|
||||||
},
|
},
|
||||||
"tags": {
|
"tags": {
|
||||||
|
|||||||
@ -4,6 +4,10 @@ export const enum UnitTestRunner {
|
|||||||
None = 'none',
|
None = 'none',
|
||||||
}
|
}
|
||||||
export const enum E2eTestRunner {
|
export const enum E2eTestRunner {
|
||||||
|
/**
|
||||||
|
* @deprecated Protractor is no longer maintained. Support for generating
|
||||||
|
* E2E tests with it will be removed in v15.
|
||||||
|
*/
|
||||||
Protractor = 'protractor',
|
Protractor = 'protractor',
|
||||||
Cypress = 'cypress',
|
Cypress = 'cypress',
|
||||||
None = 'none',
|
None = 'none',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user