mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
/* global describe,it */
|
|
|
|
var getSlug = require('../lib/speakingurl');
|
|
|
|
describe('getSlug translate cyrillic letters', function () {
|
|
'use strict';
|
|
|
|
it('should be ', function (done) {
|
|
|
|
getSlug('Пью')
|
|
.should.eql('pyu');
|
|
|
|
done();
|
|
});
|
|
|
|
}); |