mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
/* global describe,it */
|
|
|
|
var getSlug = require('../lib/speakingurl');
|
|
|
|
describe('getSlug translate georgien letters', function () {
|
|
'use strict';
|
|
|
|
it('should be ', function (done) {
|
|
|
|
getSlug('აბ', {
|
|
lang: 'ge'
|
|
})
|
|
.should.eql('ab');
|
|
|
|
done();
|
|
});
|
|
|
|
}); |