Fix length on test

It even says to do so whenever weight multipliers are adjusted...
This commit is contained in:
Madmadness65 2025-03-07 11:51:43 -06:00 committed by GitHub
parent 44d42afe59
commit 456493d305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,10 +7,10 @@ describe("Data - Splash Messages", () => {
expect(getSplashMessages().length).toBeGreaterThanOrEqual(15); expect(getSplashMessages().length).toBeGreaterThanOrEqual(15);
}); });
// make sure to adjust this test if the weight it changed! // Make sure to adjust this test if the weight is changed!
it("should add contain 10 `battlesWon` splash messages", () => { it("should add contain 15 `battlesWon` splash messages", () => {
const battlesWonMessages = getSplashMessages().filter((message) => message === "splashMessages:battlesWon"); const battlesWonMessages = getSplashMessages().filter((message) => message === "splashMessages:battlesWon");
expect(battlesWonMessages).toHaveLength(10); expect(battlesWonMessages).toHaveLength(15);
}); });
describe("Seasonal", () => { describe("Seasonal", () => {