From 87d9c4308374038485c185338712873ee0688c49 Mon Sep 17 00:00:00 2001 From: "davidzagi93@gmail.com" Date: Sat, 28 Aug 2021 18:14:44 +0100 Subject: [PATCH] uncommenting code in journalLastChilIncludes.ts --- apps/remix-ide-e2e/src/commands/journalLastChildIncludes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/remix-ide-e2e/src/commands/journalLastChildIncludes.ts b/apps/remix-ide-e2e/src/commands/journalLastChildIncludes.ts index f9df787fc4..7e63d703b6 100644 --- a/apps/remix-ide-e2e/src/commands/journalLastChildIncludes.ts +++ b/apps/remix-ide-e2e/src/commands/journalLastChildIncludes.ts @@ -5,14 +5,14 @@ import EventEmitter from 'events' Check if the last log in the console contains a specific text */ class JournalLastChildIncludes extends EventEmitter { - command (this: NightwatchBrowser): NightwatchBrowser { + command (this: NightwatchBrowser, val: string): NightwatchBrowser { this.api .waitForElementVisible('*[data-id="terminalJournal"]', 10000) .pause(1000) .getText('*[data-id="terminalJournal"]', (result) => { console.log('JournalLastChildIncludes', result.value) - // if (typeof result.value === 'string' && result.value.indexOf(val) === -1) return this.api.assert.fail(`wait for ${val} in ${result.value}`) - // else this.api.assert.ok(true, `<*[data-id="terminalJournal"]> contains ${val}.`) + if (typeof result.value === 'string' && result.value.indexOf(val) === -1) return this.api.assert.fail(`wait for ${val} in ${result.value}`) + else this.api.assert.ok(true, `<*[data-id="terminalJournal"]> contains ${val}.`) this.emit('complete') }) return this