gettext-test.js 193 B

1234567891011
  1. import {
  2. gettext
  3. } from 'misago/helpers/gettext';
  4. module('GettextHelper');
  5. // Replace this with your real tests.
  6. test('it works', function() {
  7. var result = gettext(42);
  8. ok(result);
  9. });