@@ -370,25 +370,23 @@ module.exports = {
370370
371371 // GIT WORKSPACE E2E STARTS
372372
373- 'Should create a git workspace (uniswapV4Periphery ) #group4' : function ( browser : NightwatchBrowser ) {
373+ 'Should create a git workspace (uniswapV4Template ) #group4' : function ( browser : NightwatchBrowser ) {
374374 browser
375375 . click ( '*[data-id="workspacesMenuDropdown"]' )
376376 . click ( '*[data-id="workspacecreate"]' )
377377 . waitForElementVisible ( '*[data-id="modalDialogCustomPromptTextCreate"]' )
378378 . waitForElementVisible ( '[data-id="fileSystemModalDialogModalFooter-react"] > button' )
379379 . click ( 'select[id="wstemplate"]' )
380- . click ( 'select[id="wstemplate"] option[value=uniswapV4Periphery ]' )
380+ . click ( 'select[id="wstemplate"] option[value=uniswapV4Template ]' )
381381 . waitForElementPresent ( '[data-id="fileSystemModalDialogModalFooter-react"] .modal-ok' )
382382 . execute ( function ( ) { ( document . querySelector ( '[data-id="fileSystemModalDialogModalFooter-react"] .modal-ok' ) as HTMLElement ) . click ( ) } )
383383 . pause ( 100 )
384- . waitForElementVisible ( '*[data-id="treeViewLitreeViewItemcontracts"]' )
385- . openFile ( 'contracts' )
386- . openFile ( 'contracts/hooks' )
387- . openFile ( 'contracts/hooks/examples' )
388- . openFile ( 'contracts/hooks/examples/FullRange.sol' )
384+ . waitForElementVisible ( '*[data-id="treeViewLitreeViewItemsrc"]' )
385+ . openFile ( 'src' )
386+ . openFile ( 'src/Counter.sol' )
389387 . pause ( 1000 )
390388 . getEditorValue ( ( content ) => {
391- browser . assert . ok ( content . indexOf ( `contract FullRange is BaseHook` ) !== - 1 ,
389+ browser . assert . ok ( content . indexOf ( `contract Counter is BaseHook { ` ) !== - 1 ,
392390 'Incorrect content' )
393391 } )
394392 } ,
@@ -406,4 +404,4 @@ url = https://github.com/bunsenstraat/empty3
406404[submodule "testactionsub"]
407405path = testactionsub
408406url = https://github.com/bunsenstraat/testactions
409- `
407+ `
0 commit comments