Use same structure for tests as src

This commit is contained in:
Kim Biesbjerg
2016-12-08 14:28:59 +01:00
parent 206edc53f7
commit 3e84dd2f72
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,33 @@
import { expect } from 'chai';
import { PipeParser } from '../../src/parsers/pipe.parser';
describe('PipeParser', () => {
const templateFilename: string = 'test.template.html';
let parser: PipeParser;
beforeEach(() => {
parser = new PipeParser();
});
it('should extract interpolated strings using translate pipe', () => {
const contents = `Hello {{ 'World' | translate }}`;
const messages = parser.process(templateFilename, contents);
expect(messages).to.deep.equal(['World']);
});
it('should extract interpolated strings using translate pipe in attributes', () => {
const contents = `<span attr="{{ 'Hello World' | translate }}"></span>`;
const messages = parser.process(templateFilename, contents);
expect(messages).to.deep.equal(['Hello World']);
});
it('should extract bound strings using translate pipe in attributes', () => {
const contents = `<span [attr]="'Hello World' | translate"></span>`;
const messages = parser.process(templateFilename, contents);
expect(messages).to.deep.equal(['Hello World']);
});
});