- 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)
17 lines
579 B
JavaScript
17 lines
579 B
JavaScript
const expect = require('unexpected');
|
|
|
|
const cldr = require('../lib/cldr');
|
|
|
|
describe('extractAllTextToSpeechCharacterLabels', () => {
|
|
it('should extract all the Australian English text-to-speech character labels correctly', () => {
|
|
expect(cldr.extractAllTextToSpeechCharacterLabels('en_AU'), 'to satisfy', {
|
|
'🖖': 'Vulcan salute',
|
|
'🖖🏽': 'Vulcan salute: medium skin tone',
|
|
'🤙': 'call me hand',
|
|
'🤙🏽': 'call me hand: medium skin tone',
|
|
'👋': 'waving hand',
|
|
'👋🏽': 'waving hand: medium skin tone',
|
|
});
|
|
});
|
|
});
|