1 | import React from "react";
|
2 |
|
3 | import { render, screen } from "@/test/render";
|
4 |
|
5 | import { NumberingSystem } from "./NumberingSystem";
|
6 |
|
7 | const today = new Date(2021, 10, 25);
|
8 |
|
9 | beforeAll(() => jest.setSystemTime(today));
|
10 | afterAll(() => jest.useRealTimers());
|
11 |
|
12 | beforeEach(() => {
|
13 | render(<NumberingSystem />);
|
14 | });
|
15 |
|
16 | test("should localize the days", () => {
|
17 | expect(screen.getByText("أحد")).toBeInTheDocument();
|
18 | });
|
19 | test("should localize the week numbers", () => {
|
20 | expect(screen.getByText("٤٥")).toBeInTheDocument();
|
21 | });
|