hanzi-tsconv
Version:
Hanzi Traditional <-> Simplified conversion
29 lines (22 loc) • 655 B
JavaScript
/* global describe, it, before */
import chai from 'chai';
require('../dist/main.js');
const conv = window["hanzi-tsconv"].conv;
chai.expect();
const expect = chai.expect;
let lib;
describe('Given traditional chinese', () => {
describe('converting', () => {
it('should return simplified chinese', () => {
expect(conv.tc2sc("傌")).to.be.equal("㐷");
expect(conv.tc2sc("傌𤳷傌")).to.be.equal("㐷𪽝㐷");
});
});
});
describe('Given simplified chinese', () => {
describe('cconverting', () => {
it('should return traditional chinese', () => {
expect(conv.sc2tc("㐷")).to.be.equal("傌");
});
});
});