We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
beforeEach
1 parent f294005 commit 5f4dbb2Copy full SHA for 5f4dbb2
packages/browser-tests/cypress/integration/console/grid.spec.js
@@ -1,11 +1,11 @@
1
/// <reference types="cypress" />
2
3
-describe("questdb grid", () => {
4
- before(() => {
5
- cy.visit("http://localhost:9999");
6
- });
+const baseUrl = "http://localhost:9999";
7
+describe("questdb grid", () => {
8
beforeEach(() => {
+ cy.visit(baseUrl);
+ cy.getEditorContent().should("be.visible");
9
cy.clearEditor();
10
});
11
0 commit comments