angular-docs-cn/aio/tools/translator/translate.spec.ts

15 lines
402 B
TypeScript
Raw Normal View History

import { expect } from 'chai';
2018-03-01 22:52:16 +08:00
import { dirs } from './dirs';
import { kernelText, lookup, translateDirectory, translateFile } from './translate';
2018-03-02 08:08:39 +08:00
describe('根据字典进行翻译', () => {
it('抽取核心字符', function () {
expect(kernelText(' # Forms ABC ')).eql('# Forms ABC');
});
2018-03-02 08:08:39 +08:00
it('查字典', () => {
expect(lookup('# Forms')[0].translation).eql('# 表单');
});
});