mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
17 lines
382 B
JavaScript
17 lines
382 B
JavaScript
|
|
describe("Query Editor", () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
cy.appUILogin();
|
||
|
|
cy.createApp();
|
||
|
|
});
|
||
|
|
|
||
|
|
it("should verify Elements on query editor", () => {});
|
||
|
|
|
||
|
|
it("should verify Functionality of query editor", () => {});
|
||
|
|
|
||
|
|
it("should verify imported app's queries", () => {});
|
||
|
|
|
||
|
|
it("should verify transformation", () => {});
|
||
|
|
|
||
|
|
it("should verify Event Handler", () => {});
|
||
|
|
});
|