adding T92562988 and updating ImportPathHelper

This commit is contained in:
zsolleci
2021-05-04 13:27:04 -05:00
parent 79886a7db3
commit dc947b57d0
3 changed files with 139 additions and 2 deletions
@@ -23,7 +23,7 @@ from base import TestAutomationBase
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
@pytest.mark.parametrize("project", ["AutomatedTesting"])
class TestAutomation(TestAutomationBase):
def test_Docking_Pane(self, request, workspace, editor, launcher_platform):
from . import Docking_Pane as test_module
self._run_test(request, workspace, editor, test_module)
@@ -31,3 +31,7 @@ class TestAutomation(TestAutomationBase):
def test_Resizing_Pane(self, request, workspace, editor, launcher_platform):
from . import Resizing_Pane as test_module
self._run_test(request, workspace, editor, test_module)
def test_NodeCategory_ExpandOnClick(self, request, workspace, editor, launcher_platform):
from . import NodeCategory_ExpandOnClick as test_module
self._run_test(request, workspace, editor, test_module)