mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-31 10:07:22 +01:00
8 lines
217 B
JavaScript
8 lines
217 B
JavaScript
/// <reference types="cypress" />
|
|
|
|
context("Dozzle routes", { baseUrl: Cypress.env("DOZZLE_DEFAULT") }, () => {
|
|
it("show", () => {
|
|
cy.visit("/show?name=dozzle").url().should("include", "/container/");
|
|
});
|
|
});
|