1 |
import Pagination from "@framework/pagination/Pagination"; |
import Pagination from "@framework/widgets/Pagination"; |
2 |
import { describe, expect, it, vi } from "vitest"; |
import { describe, expect, it, vi } from "vitest"; |
3 |
import { createApplication } from "../../mocks/application.mock"; |
import { createApplication } from "../../mocks/application.mock"; |
4 |
|
|
118 |
|
|
119 |
it("should calculate max pages correctly", async () => { |
it("should calculate max pages correctly", async () => { |
120 |
const getCount = vi.fn().mockResolvedValue(15); |
const getCount = vi.fn().mockResolvedValue(15); |
121 |
const pagination = new Pagination(undefined, emojiResolver).setCountGetter(getCount).setLimit(5); |
const pagination = new Pagination(undefined, emojiResolver) |
122 |
|
.setCountGetter(getCount) |
123 |
|
.setLimit(5); |
124 |
|
|
125 |
expect(await pagination["calculateMaxPages"].call(pagination)).toBe(3); |
expect(await pagination["calculateMaxPages"].call(pagination)).toBe(3); |
126 |
}); |
}); |