RenaiApp/src/renderer/services/utils.spec.ts

12 lines
249 B
TypeScript

import { expect } from 'chai';
import 'mocha';
import { t } from './utils';
describe('Frontend Utils', function () {
this.timeout(1000);
it("does 'translate' text", () => {
expect(t('translate this')).to.equal('translate this');
});
});