diff --git a/apps/remix-ide-e2e/src/tests/workspace_git.test.ts b/apps/remix-ide-e2e/src/tests/workspace_git.test.ts index fb74ce1bee..e5e571f67f 100644 --- a/apps/remix-ide-e2e/src/tests/workspace_git.test.ts +++ b/apps/remix-ide-e2e/src/tests/workspace_git.test.ts @@ -370,25 +370,23 @@ module.exports = { // GIT WORKSPACE E2E STARTS - 'Should create a git workspace (uniswapV4Periphery) #group4': function (browser: NightwatchBrowser) { + 'Should create a git workspace (uniswapV4Template) #group4': function (browser: NightwatchBrowser) { browser .click('*[data-id="workspacesMenuDropdown"]') .click('*[data-id="workspacecreate"]') .waitForElementVisible('*[data-id="modalDialogCustomPromptTextCreate"]') .waitForElementVisible('[data-id="fileSystemModalDialogModalFooter-react"] > button') .click('select[id="wstemplate"]') - .click('select[id="wstemplate"] option[value=uniswapV4Periphery]') + .click('select[id="wstemplate"] option[value=uniswapV4Template]') .waitForElementPresent('[data-id="fileSystemModalDialogModalFooter-react"] .modal-ok') .execute(function () { (document.querySelector('[data-id="fileSystemModalDialogModalFooter-react"] .modal-ok') as HTMLElement).click() }) .pause(100) - .waitForElementVisible('*[data-id="treeViewLitreeViewItemcontracts"]') - .openFile('contracts') - .openFile('contracts/hooks') - .openFile('contracts/hooks/examples') - .openFile('contracts/hooks/examples/FullRange.sol') + .waitForElementVisible('*[data-id="treeViewLitreeViewItemsrc"]') + .openFile('src') + .openFile('src/Counter.sol') .pause(1000) .getEditorValue((content) => { - browser.assert.ok(content.indexOf(`contract FullRange is BaseHook`) !== -1, + browser.assert.ok(content.indexOf(`contract Counter is BaseHook {`) !== -1, 'Incorrect content') }) }, @@ -406,4 +404,4 @@ url = https://github.com/bunsenstraat/empty3 [submodule "testactionsub"] path = testactionsub url = https://github.com/bunsenstraat/testactions -` \ No newline at end of file +` diff --git a/apps/remix-ide/src/app/tabs/locales/en/filePanel.json b/apps/remix-ide/src/app/tabs/locales/en/filePanel.json index 4f917fe861..3b790fa706 100644 --- a/apps/remix-ide/src/app/tabs/locales/en/filePanel.json +++ b/apps/remix-ide/src/app/tabs/locales/en/filePanel.json @@ -113,7 +113,7 @@ "filePanel.hashchecker": "Hash Checker", "filePanel.rln": "Rate-Limiting Nullifier", "filePanel.breakthroughLabsUniswapv4Hooks": "Breakthrough-Labs Hooks", - "filePanel.uniswapV4Periphery": "v4 Periphery", + "filePanel.uniswapV4Template": "v4 Template", "filePanel.uniswapV4HookBookMultiSigSwapHook": "HookBook MultiSigSwapHook", "filePanel.transparent": "Transparent", "filePanel.initGitRepoTitle": "Check option to initialize workspace as a new git repository", @@ -136,4 +136,4 @@ "filePanel.movingFolderFailedMsg": "Unexpected error while moving folder: {src}", "filePanel.workspaceActions": "Workspace actions", "filePanel.saveCodeSample": "This code-sample workspace will not be persisted. Click here to save it." -} +} \ No newline at end of file diff --git a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx index 2022f6d2af..400aa1de2c 100644 --- a/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx +++ b/libs/remix-ui/workspace/src/lib/remix-ui-workspace.tsx @@ -791,8 +791,8 @@ export function Workspace() { -