File size: 248 Bytes
cf86710
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { defaultDateLib } from "../classes";

import { formatYearDropdown } from "./formatYearDropdown";

test("should return the formatted weekday name", () => {
  expect(formatYearDropdown(new Date(2022, 0), defaultDateLib)).toEqual("2022");
});