Fixed failing test

pull/5370/head
ioedeveloper 4 years ago
parent 3ef80e0e3e
commit 0e7949c5a7
  1. 4
      apps/remix-ide-e2e/src/tests/fileManager_api.spec.ts

@ -147,8 +147,8 @@ const executeReadFile = `
const executeCopyFile = `
const run = async () => {
await remix.call('fileManager', 'copyFile', 'contracts/3_Ballot.sol', '/', 'new_contract.sol')
const result = await remix.call('fileManager', 'readFile', 'new_contract.sol')
await remix.call('fileManager', 'copyFile', 'contracts/3_Ballot.sol', '/', 'copy_contract.sol')
const result = await remix.call('fileManager', 'readFile', 'copy_contract.sol')
console.log(result)
}

Loading…
Cancel
Save