mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 05:55:11 +00:00
18 lines
358 B
JavaScript
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();
|
|
});
|
|
|
|
}); |