Files

18 lines
358 B
JavaScript
Raw Permalink Normal View History

2025-08-27 14:05:33 +08:00
/* 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();
});
});