Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/week_test.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ describe("Week", () => {
});
});
describe("selected and calendarStartDay", () => {
it("shoud starts the selected day on the Wednesday immediately preceding that day, When the calendarStartDay Props is 3.", () => {
it("should starts the selected day on the Wednesday immediately preceding that day, When the calendarStartDay Props is 3.", () => {
const calendarStartDay = 3;
const currentWeek = getStartOfWeek(
newDate("2024-03-01"),
Expand Down
2 changes: 1 addition & 1 deletion src/test/year_picker_test.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe("YearPicker", () => {
expect(onYearChangeSpy).toHaveBeenCalled();
});

it("should has selected class when element of array equal of choosen year", () => {
it("should has selected class when element of array equal of chosen year", () => {
const date = new Date("2015-01-01");
const { container } = render(
<Year
Expand Down
Loading