You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
 | 
						|
// @ts-nocheck - TODO: add generic type to setupI18n to fix this
 | 
						|
 | 
						|
import { expect } from 'chai';
 | 
						|
import { initI18n, testDictionary } from './util';
 | 
						|
import { resetTranslationDictionary } from '../../../../../util/i18n/translationDictionaries';
 | 
						|
 | 
						|
describe('formatMessageWithArgs', () => {
 | 
						|
  let i18n;
 | 
						|
  beforeEach(() => {
 | 
						|
    i18n = initI18n(testDictionary);
 | 
						|
  });
 | 
						|
  afterEach(() => {
 | 
						|
    resetTranslationDictionary();
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns the message with args for a message', () => {
 | 
						|
    const message = i18n('Hello, {name}!', { name: 'Alice' });
 | 
						|
    expect(message).to.equal('Hello, Alice!');
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns the message with args for a multi-arg message', () => {
 | 
						|
    const message = i18n('{found_count} of {count} match', { count: 1, found_count: 2 });
 | 
						|
    expect(message).to.equal('2 of 1 match');
 | 
						|
  });
 | 
						|
 | 
						|
  it("returns the message with args for plural message' with no args", () => {
 | 
						|
    const message = i18n('No args');
 | 
						|
    expect(message).to.equal('No args');
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns the message with args for a token with args', () => {
 | 
						|
    const message = i18n('Hello, {name}!', { name: 'Alice' });
 | 
						|
    expect(message).to.equal('Hello, Alice!');
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns the message with args for a token with a tag', () => {
 | 
						|
    const message = i18n('Hello, {name}! <b>Welcome!</b>', { name: 'Alice' });
 | 
						|
    expect(message).to.equal('Hello, Alice! <b>Welcome!</b>');
 | 
						|
  });
 | 
						|
 | 
						|
  it('returns the message with args for a token with a tag and args', () => {
 | 
						|
    const message = i18n('Hello, {name}! <b>Welcome, {arg}!</b>', { name: 'Alice', arg: 'Bob' });
 | 
						|
    expect(message).to.equal('Hello, Alice! <b>Welcome, Bob!</b>');
 | 
						|
  });
 | 
						|
});
 |