fuc-new/doc/node_modules/speakingurl/test/test-dhivehi.js
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

18 lines
358 B
JavaScript

/* global describe,it */
var getSlug = require('../lib/speakingurl');
describe('getSlug translate dhivehi letters', function () {
'use strict';
it('should be ', function (done) {
getSlug('މއދކ ވ ރ ށ ރީތި', {
lang: 'dv'
})
.should.eql('madhk-v-r-sh-reethi');
done();
});
});