const { expect } = require('chai'); const { mark } = require('./translator'); describe('translator', () => { it('mark translation results and origins', () => { expect(mark(`

One or two

一或二

`)) .eql(`

One or two

一或二

`); }); });