mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-13 16:27:33 +00:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
// https://docs.cypress.io/api/introduction/api.html
|
|
|
|
describe("My First Test", () => {
|
|
it("visits the app root url", () => {
|
|
cy.visit("/");
|
|
cy.contains("h1", "You did it!");
|
|
});
|
|
});
|