fixed jasmine & RoleSelectTest FT methods that were failing due to the Role card reordering in previous pipeline push
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Disco DeDisco
2026-04-05 01:52:30 -04:00
parent 74f63a7721
commit d4518a0671
3 changed files with 8 additions and 8 deletions

View File

@@ -441,10 +441,10 @@ describe("RoleSelect", () => {
});
it("adds role-confirmed class to the seated position after placeCard completes", async () => {
// Add a seat element matching the first available role (PC)
// Add a seat element matching the first available role (SC — Shepherd)
const seat = document.createElement("div");
seat.className = "table-seat";
seat.dataset.role = "PC";
seat.dataset.role = "SC";
seat.innerHTML = '<i class="position-status-icon fa-solid fa-ban"></i>';
testDiv.appendChild(seat);