grafana/e2e/utils/support/monaco.ts

8 lines
276 B
TypeScript

import { e2e } from '../index';
export function waitForMonacoToLoad() {
e2e.components.QueryField.container().children('[data-testid="Spinner"]').should('not.exist');
cy.window().its('monaco').should('exist');
cy.get('.monaco-editor textarea:first').should('exist');
}