Skip to content

Commit 7bf9492

Browse files
committedMar 19, 2025
remove redundant assertion
1 parent 54d9309 commit 7bf9492

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎packages/browser-tests/cypress/commands.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ Cypress.Commands.add("getEditorContent", () =>
152152
.get(".monaco-editor")
153153
.should("be.visible")
154154
.find("textarea")
155-
.should("exist")
156155
.should("be.visible")
157156
);
158157

@@ -260,7 +259,7 @@ Cypress.Commands.add("loadConsoleWithAuth", (clearWarnings) => {
260259
cy.clearLocalStorage();
261260
indexedDB.deleteDatabase("web-console");
262261
cy.visit(baseUrl);
263-
cy.loginWithUserAndPassword();
262+
//cy.loginWithUserAndPassword();
264263
cy.getEditorContent().should("be.visible");
265264
if (clearWarnings) {
266265
cy.clearSimulatedWarnings();

0 commit comments

Comments
 (0)
Failed to load comments.