Skip to content

Commit 9cc94d1

Browse files
committedMar 15, 2025
add ss debug
1 parent 012d75d commit 9cc94d1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎packages/browser-tests/cypress/integration/console/schema.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,10 @@ describe("materialized views", () => {
263263
});
264264

265265
it("should show a warning icon when base table is dropped", () => {
266+
cy.screenshot("drop-test-1");
266267
cy.dropTable("btc_trades");
268+
cy.screenshot("drop-test-2");
269+
267270
cy.wait(1000);
268271
cy.refreshSchema();
269272

@@ -282,12 +285,14 @@ describe("materialized views", () => {
282285

283286
after(() => {
284287
cy.loadConsoleWithAuth();
288+
cy.screenshot("afterall-dropping-tables");
285289

286290
materializedViews.forEach((mv) => {
287291
cy.dropMaterializedView(mv);
288292
});
289293

290294
tables.forEach((table) => {
295+
cy.screenshot(`dropping table ${table}`);
291296
cy.dropTableIfExists(table);
292297
});
293298
});

0 commit comments

Comments
 (0)
Failed to load comments.