Skip to content

Commit

Permalink
Merge pull request #39 from USB-CI3715/test-estilo
Browse files Browse the repository at this point in the history
Test para verificacion de estilos
  • Loading branch information
EliezerMCR authored Nov 14, 2024
2 parents 1acdfc7 + bf61589 commit 492e89c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions test/style.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// Importamos las bibliotecas necesarias
import "@testing-library/jest-dom";
import { render } from "@testing-library/react";

// Importamos el archivo SCSS
import "../node_modules/nodebb-theme-harmony/scss/topic.scss";

describe("Estilos de Topic SCSS", () => {
test("debe aplicar la clase de estrella en amarillo a los mensajes urgentes", () => {
// Renderizamos un elemento simulado con la clase de estrella
const { container } = render(
<i className="fa fa-star text-warning me-2"></i>
);

// Seleccionamos el ícono y verificamos que tenga el estilo de color amarillo
const starIcon = container.querySelector(".fa-star.text-warning");
expect(starIcon).toHaveClass("text-warning");

// Verificamos que el ícono tenga el color amarillo aplicado
expect(starIcon).toHaveStyle("color: #f0ad4e"); // Ajusta al color exacto si es necesario
});
});

0 comments on commit 492e89c

Please sign in to comment.