Merge pull request #27952 from woocommerce/fix/27950

restore shipping setup test
This commit is contained in:
Rodrigo Primo 2020-10-13 17:28:55 -03:00 committed by GitHub
commit 3bb94bc23f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ const runOnboardingFlowTest = () => {
const runTaskListTest = () => {
describe('Store owner can go through setup Task List', () => {
it.skip('can setup shipping', async () => {
it('can setup shipping', async () => {
await page.evaluate(() => {
document.querySelector('.woocommerce-list__item-title').scrollIntoView();
});
@ -37,7 +37,7 @@ const runTaskListTest = () => {
await Promise.all([
// Click on "Set up shipping" task to move to the next step
taskListItems[4].click(),
taskListItems[3].click(),
// Wait for shipping setup section to load
page.waitForNavigation({waitUntil: 'networkidle0'}),