We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 012d75d commit 9cc94d1Copy full SHA for 9cc94d1
packages/browser-tests/cypress/integration/console/schema.spec.js
@@ -263,7 +263,10 @@ describe("materialized views", () => {
263
});
264
265
it("should show a warning icon when base table is dropped", () => {
266
+ cy.screenshot("drop-test-1");
267
cy.dropTable("btc_trades");
268
+ cy.screenshot("drop-test-2");
269
+
270
cy.wait(1000);
271
cy.refreshSchema();
272
@@ -282,12 +285,14 @@ describe("materialized views", () => {
282
285
283
286
after(() => {
284
287
cy.loadConsoleWithAuth();
288
+ cy.screenshot("afterall-dropping-tables");
289
290
materializedViews.forEach((mv) => {
291
cy.dropMaterializedView(mv);
292
293
294
tables.forEach((table) => {
295
+ cy.screenshot(`dropping table ${table}`);
296
cy.dropTableIfExists(table);
297
298
0 commit comments