fix vyper test init with right url for e2e

pull/5370/head
Joseph Izang 1 year ago
parent 48d335d1a7
commit 7dbde13858
  1. 6
      apps/remix-ide-e2e/src/tests/vyper_api.test.ts

@ -9,7 +9,7 @@ declare global {
module.exports = {
'@disabled': true,
before: function (browser: NightwatchBrowser, done: VoidFunction) {
init(browser, done)
init(browser, done, 'http://localhost:8080')
},
'Should connect to vyper plugin #group1': function (browser: NightwatchBrowser) {
@ -60,7 +60,7 @@ module.exports = {
browser.assert.ok(okVisible.value === true, 'ABI should be visible')
}
})
},
@ -136,4 +136,4 @@ def _createPokemon(_name: String[32], _dna: uint256, _HP: uint256):
matches: 0,
wins: 0
})
self.totalPokemonCount += 1`
self.totalPokemonCount += 1`

Loading…
Cancel
Save