mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-08 20:26:08 -05:00
Fix CI
This commit is contained in:
@@ -10,6 +10,7 @@ const AnalyzeBuild = suite("Analyze build");
|
||||
const weaponsWithoutDmg: MainWeaponId[] = [
|
||||
1000, 1010, 1020, 1030, 1100, 1110, 7010, 7020, 8000, 8010,
|
||||
/* chill season, */ 1001, 1040, 1101, /* fresh season */ 1011,
|
||||
/* sizzle season */ 1041, 1120,
|
||||
];
|
||||
AnalyzeBuild("Every main weapon has damage", () => {
|
||||
const weaponsWithoutDamage: MainWeaponId[] = [];
|
||||
|
||||
@@ -24,6 +24,8 @@ export const objectDamageJsonKeyPriority: Record<
|
||||
keyof typeof objectDamages,
|
||||
Array<DamageType> | null
|
||||
> = {
|
||||
// added in chill season 2023
|
||||
Maneuver_SideStep_BombCore: null,
|
||||
// added in fresh season 2022
|
||||
BlowerExhale: null,
|
||||
Castle: null,
|
||||
|
||||
@@ -27,7 +27,6 @@ import { checkOut } from "../queries/checkOut.server";
|
||||
import hasTournamentStarted from "../queries/hasTournamentStarted.server";
|
||||
import type { TournamentLoaderData } from "./to.$id";
|
||||
import { joinTeam, leaveTeam } from "../queries/joinLeaveTeam.server";
|
||||
import { TOURNAMENT } from "../tournament-constants";
|
||||
import { deleteTeam } from "../queries/deleteTeam.server";
|
||||
import { useUser } from "~/modules/auth";
|
||||
import {
|
||||
|
||||
@@ -8,7 +8,7 @@ import type { MapPoolObject } from "./types";
|
||||
|
||||
const Serializer = suite("Map pool serializer");
|
||||
|
||||
const testSerializedPool = "tw:19980;sz:1d0a0;tc:164c0;rm:15e00;cb:1ce00";
|
||||
const testSerializedPool = "tw:66600;sz:74280;tc:59300;rm:57800;cb:73800";
|
||||
|
||||
Serializer("Unserializes and then serializes to same result", () => {
|
||||
const mapPool = serializedStringToMapPool(testSerializedPool);
|
||||
|
||||
Reference in New Issue
Block a user