From 8c3f89de0747ad5f34c137475f371c6bb9f11fcb Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Tue, 22 Aug 2023 14:14:26 +0530 Subject: [PATCH] class update for e2e --- apps/remix-ide-e2e/src/commands/checkAnnotations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix-ide-e2e/src/commands/checkAnnotations.ts b/apps/remix-ide-e2e/src/commands/checkAnnotations.ts index c6e6fad337..7e74e66515 100644 --- a/apps/remix-ide-e2e/src/commands/checkAnnotations.ts +++ b/apps/remix-ide-e2e/src/commands/checkAnnotations.ts @@ -3,7 +3,7 @@ import {NightwatchBrowser} from 'nightwatch' class checkAnnotations extends EventEmitter { command(this: NightwatchBrowser, type: string, line: number): NightwatchBrowser { - this.api.assert.containsText(`.glyph-margin-widgets .${type} + div`, line.toString()).perform(() => this.emit('complete')) + this.api.assert.containsText(`.glyph-margin-widgets .${type}`, line.toString()).perform(() => this.emit('complete')) return this } }