ngx-translate-extract/tests/parsers/function.parser.spec.ts

31 lines
823 B
TypeScript
Raw Normal View History

import { expect } from 'chai';
import { FunctionParser } from '../../src/parsers/function.parser';
describe('FunctionParser', () => {
const componentFilename: string = 'test.component.ts';
let parser: FunctionParser;
beforeEach(() => {
parser = new FunctionParser();
});
it('should extract strings using marker function', () => {
const contents = `
import { _ } from '@biesbjerg/ngx-translate-extract';
_('Hello world');
_(['I', 'am', 'extracted']);
otherFunction('But I am not');
_(message || 'binary expression');
_(message ? message : 'conditional operator');
2019-06-13 12:44:30 +03:00
_('FOO.bar');
`;
const keys = parser.extract(contents, componentFilename).keys();
2019-06-13 12:44:30 +03:00
expect(keys).to.deep.equal(['Hello world', 'I', 'am', 'extracted', 'binary expression', 'conditional operator', 'FOO.bar']);
});
});