Updated lock files & fixed failing E2E test
This commit is contained in:
parent
d3162b2f1d
commit
dde64b964f
|
@ -18496,6 +18496,19 @@
|
|||
"integrity": "sha512-pB45JlfmHuEigNFZ1X+CTgIsOT3/TTb9iZxw1DHXge/7ytY8FNhtcNwTfF9IgnS6/xaFRZBqzw4DyH4sP1Lyxg==",
|
||||
"dev": true
|
||||
},
|
||||
"@wordpress/e2e-test-utils": {
|
||||
"version": "4.6.0",
|
||||
"resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils/-/e2e-test-utils-4.6.0.tgz",
|
||||
"integrity": "sha512-oqnFEOuWkUFwzSVGeKZOfs9YhWVyCKdsOtJKnXd6Vv5Q1quq2fmbDp6HL+dIUI2DlJZISUmOWG4B37mMVA0DLg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.9.2",
|
||||
"@wordpress/keycodes": "^2.12.0",
|
||||
"@wordpress/url": "^2.14.0",
|
||||
"lodash": "^4.17.15",
|
||||
"node-fetch": "^1.7.3"
|
||||
}
|
||||
},
|
||||
"@wordpress/eslint-plugin": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-7.1.0.tgz",
|
||||
|
@ -30076,6 +30089,16 @@
|
|||
"semver": "^5.7.0"
|
||||
}
|
||||
},
|
||||
"node-fetch": {
|
||||
"version": "1.7.3",
|
||||
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
|
||||
"integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"encoding": "^0.1.11",
|
||||
"is-stream": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"node-fetch-npm": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz",
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
||||
"@wordpress/babel-preset-default": "3.0.2",
|
||||
"@wordpress/eslint-plugin": "7.1.0",
|
||||
"@wordpress/e2e-test-utils": "4.6.0",
|
||||
"autoprefixer": "9.8.6",
|
||||
"babel-eslint": "10.1.0",
|
||||
"chai": "4.2.0",
|
||||
|
|
|
@ -115,7 +115,7 @@ const completeOnboardingWizard = async () => {
|
|||
|
||||
// Query for the product types checkboxes
|
||||
const productTypesCheckboxes = await page.$$( '.components-checkbox-control__input' );
|
||||
expect( productTypesCheckboxes ).toHaveLength( 7 );
|
||||
expect( productTypesCheckboxes ).toHaveLength( 8 );
|
||||
|
||||
// Select Physical and Downloadable products
|
||||
for ( let i = 1; i < 2; i++ ) {
|
||||
|
|
Loading…
Reference in New Issue