zhconv 0.4.1

Traditional, Simplified and regional Chinese variants converter powered by MediaWiki & OpenCC rulesets and the Aho-Corasick algorithm 中文简繁及地區詞轉換
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
import { render } from "@testing-library/react";
import { expect, test, describe } from "vitest";

import App from "./App";

describe("App", () => {
  test("renders correctly", () => {
    document.title = "zhs: Online Chinese Converter";
    render(<App />);
    expect(document.title).toBe("zhs: Online Chinese Converter");
  });
});