diff --git a/apps/remix-ide-e2e/src/commands/addFile.ts b/apps/remix-ide-e2e/src/commands/addFile.ts index 626ab4351d..7b9a16bc20 100644 --- a/apps/remix-ide-e2e/src/commands/addFile.ts +++ b/apps/remix-ide-e2e/src/commands/addFile.ts @@ -18,7 +18,6 @@ function addFile (browser: NightwatchBrowser, name: string, content: NightwatchC .clickLaunchIcon('filePanel') .click('li[data-id="treeViewLitreeViewItemREADME.txt"]') // focus on root directory .elements('css selector', `li[data-id="treeViewLitreeViewItem${name}"]`, (res) => { - console.log(res) if (res.value && (res.value as any).length > 0) { browser.openFile(name) .perform(function () { diff --git a/apps/remix-ide-e2e/src/commands/setEditorValue.ts b/apps/remix-ide-e2e/src/commands/setEditorValue.ts index 813b93db35..225ff14b61 100644 --- a/apps/remix-ide-e2e/src/commands/setEditorValue.ts +++ b/apps/remix-ide-e2e/src/commands/setEditorValue.ts @@ -3,7 +3,6 @@ import EventEmitter from 'events' class SetEditorValue extends EventEmitter { command (this: NightwatchBrowser, value: string, callback?: VoidFunction): NightwatchBrowser { - console.log('set editor', value) this.api.perform((client, done) => { this.api.execute(function (value) { const elem: any = document.getElementById('editorView')