Commit f61814d8 authored by Sanad Liaquat's avatar Sanad Liaquat

Merge branch 'acunskis-remove-subgroup-validation' into 'master'

E2E: Remove subgroup validation for bulk import

See merge request gitlab-org/gitlab!63972
parents 02bb5eaf e0913fc6
...@@ -100,10 +100,11 @@ module QA ...@@ -100,10 +100,11 @@ module QA
expect(import_page).to have_imported_group(source_group.path, wait: 180) expect(import_page).to have_imported_group(source_group.path, wait: 180)
expect { imported_group.reload! }.to eventually_eq(source_group).within(duration: 10) expect { imported_group.reload! }.to eventually_eq(source_group).within(duration: 10)
expect { imported_subgroup.reload! }.to eventually_eq(subgroup).within(duration: 30)
expect { imported_group.labels }.to eventually_include(*source_group.labels).within(duration: 10) expect { imported_group.labels }.to eventually_include(*source_group.labels).within(duration: 10)
expect { imported_subgroup.labels }.to eventually_include(*subgroup.labels).within(duration: 30)
# Do not validate subgroups until https://gitlab.com/gitlab-org/gitlab/-/issues/332818 is resolved
# expect { imported_subgroup.reload! }.to eventually_eq(subgroup).within(duration: 30)
# expect { imported_subgroup.labels }.to eventually_include(*subgroup.labels).within(duration: 30)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment