Commit 36ed0aa9 authored by Illya Klymov's avatar Illya Klymov Committed by Jacques Erasmus

Update qa selectors

Make sure our qa suite is ok ;)
parent e81101e3
...@@ -7,7 +7,6 @@ module QA ...@@ -7,7 +7,6 @@ module QA
view "app/assets/javascripts/import_entities/import_groups/components/import_table.vue" do view "app/assets/javascripts/import_entities/import_groups/components/import_table.vue" do
element :import_table element :import_table
element :import_item element :import_item
element :import_group_button
element :import_status_indicator element :import_status_indicator
end end
...@@ -19,6 +18,10 @@ module QA ...@@ -19,6 +18,10 @@ module QA
element :target_namespace_selector_dropdown element :target_namespace_selector_dropdown
end end
view "app/assets/javascripts/import_entities/import_groups/components/import_actions_cell.vue" do
element :import_group_button
end
# Import source group in to target group # Import source group in to target group
# #
# @param [String] source_group_name # @param [String] source_group_name
......
...@@ -25,7 +25,7 @@ describe('import actions cell', () => { ...@@ -25,7 +25,7 @@ describe('import actions cell', () => {
createComponent({ group }); createComponent({ group });
const button = wrapper.findComponent(GlButton); const button = wrapper.findComponent(GlButton);
console.log(wrapper.html());
expect(button.exists()).toBe(true); expect(button.exists()).toBe(true);
expect(button.text()).toBe('Import'); expect(button.text()).toBe('Import');
}); });
......
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