- Bug beim Übernehmen eines Termins in die Zeiterfassung, wenn man Stunden als Zeiteinheit ausgewählt hatte, behoben. - Berichte und Mitarbeiterstundenkonto eingebaut - Node-Module optimiert (sehr viele gelöscht)
18 lines
533 B
JavaScript
18 lines
533 B
JavaScript
const expect = require('unexpected');
|
|
|
|
const cldr = require('../lib/cldr');
|
|
|
|
describe('extractDerivedTextToSpeechCharacterLabels', () => {
|
|
it('should extract the Australian English derived text-to-speech character labels correctly', () => {
|
|
expect(
|
|
cldr.extractDerivedTextToSpeechCharacterLabels('en_AU'),
|
|
'to satisfy',
|
|
{
|
|
'🖖🏽': 'Vulcan salute: medium skin tone',
|
|
'🤙🏽': 'call me hand: medium skin tone',
|
|
'👋🏽': 'waving hand: medium skin tone',
|
|
}
|
|
);
|
|
});
|
|
});
|