mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Add new commands file * Modify Index * Modify appbuiler specs * Minor data-cy modification * Minor toast label change. * Fix Failing specs
16 lines
382 B
JavaScript
16 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", () => {});
|
|
});
|