mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-20 23:32:19 +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);
|
||||
});
|
||||
|
||||
// make sure to adjust this test if the weight it changed!
|
||||
it("should add contain 10 `battlesWon` splash messages", () => {
|
||||
// Make sure to adjust this test if the weight is changed!
|
||||
it("should add contain 15 `battlesWon` splash messages", () => {
|
||||
const battlesWonMessages = getSplashMessages().filter((message) => message === "splashMessages:battlesWon");
|
||||
expect(battlesWonMessages).toHaveLength(10);
|
||||
expect(battlesWonMessages).toHaveLength(15);
|
||||
});
|
||||
|
||||
describe("Seasonal", () => {
|
||||
|
Loading…
Reference in New Issue
Block a user