mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-20 07:12:32 +02:00
Fix length on test
It even says to do so whenever weight multipliers are adjusted...
This commit is contained in:
parent
44d42afe59
commit
456493d305
@ -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", () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user