FirstPageButton.test.ts 400 B

12345678910
  1. import FirstPageButton from "../../src/Classes/Buttons/FirstPageButton";
  2. describe("Button that switches pagination to the first page", () => {
  3. test("should initialize with action that equals to zero and disableWhen that equals to zero.", () => {
  4. const button = new FirstPageButton();
  5. expect(button.action).toBe(0);
  6. expect(button.disableWhen).toBe(0);
  7. });
  8. });