mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
15 lines
383 B
JavaScript
15 lines
383 B
JavaScript
describe("Planing", () => {
|
|
it("search", () => {
|
|
cy.createAdminUnit().then(function (adminUnitId) {
|
|
cy.createEvent(adminUnitId).then(function (eventId) {
|
|
|
|
cy.visit("/planing");
|
|
cy.screenshot("search-form");
|
|
cy.screenshotDatepicker("#date_from-user");
|
|
cy.get('#submit').click();
|
|
cy.screenshot("result");
|
|
});
|
|
});
|
|
});
|
|
});
|