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