Transformations: Rename "Transform" tab to "Transform data" (#75757)

* Rename transform tab to transform data
This commit is contained in:
Kyle Cunningham
2023-10-04 14:24:21 -05:00
committed by GitHub
parent d9160553f9
commit d673862853
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -35,9 +35,9 @@ describe('Panel edit tests', () => {
// Bottom pane tabs
// Can change to Transform tab
e2e.components.Tab.title('Transform').should('be.visible').click();
e2e.components.Tab.title('Transform data').should('be.visible').click();
e2e.components.Tab.active().within((li: JQuery<HTMLLIElement>) => {
expect(li.text()).equals('Transform0'); // there's no transform so therefore Transform + 0
expect(li.text()).equals('Transform data0'); // there's no transform so therefore Transform + 0
});
e2e.components.Transforms.card('Merge').scrollIntoView().should('be.visible');
e2e.components.QueryTab.content().should('not.exist');