mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 04:40:46 -05:00
16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
describe("Profile", () => {
|
|
beforeEach(() => {
|
|
cy.visit("/u/455039198672453645");
|
|
});
|
|
|
|
it("loads avatar", () => {
|
|
cy.get("[data-cy=profile-page-avatar]").find("img");
|
|
});
|
|
|
|
it("renders markdown", () => {
|
|
cy.get("strong");
|
|
});
|
|
});
|