You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/remix-ide-e2e/src/tests/transactionExecution.test.ts
+107Lines changed: 107 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -195,6 +195,26 @@ module.exports = {
195
195
.journalLastChildIncludes('"documentation": "param2 from library"')
196
196
.journalLastChildIncludes('"documentation": "param3 from library"')
197
197
.journalLastChildIncludes('Debug the transaction to get more information.')
198
+
},
199
+
200
+
'Should compile and deploy 2 simple contracts, the contract creation component state should be correctly reset for the deployment of the second contract #group4': function(browser: NightwatchBrowser){
201
+
browser
202
+
.addFile('Storage.sol',sources[6]['Storage.sol'])
203
+
.addFile('Owner.sol',sources[6]['Owner.sol'])
204
+
.clickLaunchIcon('udapp')
205
+
.createContract('42')
206
+
.openFile('Storage.sol')
207
+
.clickLaunchIcon('udapp')
208
+
.createContract('')// this creation will fail if the component hasn't been properly reset.
0 commit comments