test(language-service): fix minor typos (#21372)

PR Close #21372
This commit is contained in:
Frederik Prijck 2018-01-07 22:51:48 +01:00 committed by Victor Berchet
parent 8115edc82f
commit e2bdef4cf6
1 changed files with 6 additions and 6 deletions

View File

@ -55,7 +55,7 @@ describe('plugin', () => {
} }
}); });
it('should be able to return element diretives', it('should be able to return element directives',
() => { contains('app/app.component.ts', 'empty', 'my-app'); }); () => { contains('app/app.component.ts', 'empty', 'my-app'); });
it('should be able to return h1 attributes', it('should be able to return h1 attributes',
@ -65,7 +65,7 @@ describe('plugin', () => {
contains('app/app.component.ts', 'div-attributes', '(click)', '[ngClass]', '*ngIf', '*ngFor'); contains('app/app.component.ts', 'div-attributes', '(click)', '[ngClass]', '*ngIf', '*ngFor');
}); });
it('should be able to returned attribute names with an incompete attribute', it('should be able to return attribute names with an incompete attribute',
() => { contains('app/parsing-cases.ts', 'no-value-attribute', 'id', 'dir', 'lang'); }); () => { contains('app/parsing-cases.ts', 'no-value-attribute', 'id', 'dir', 'lang'); });
it('should be able to return attributes of an incomplete element', () => { it('should be able to return attributes of an incomplete element', () => {
@ -77,19 +77,19 @@ describe('plugin', () => {
it('should be able to return completions with a missing closing tag', it('should be able to return completions with a missing closing tag',
() => { contains('app/parsing-cases.ts', 'missing-closing', 'h1', 'h2'); }); () => { contains('app/parsing-cases.ts', 'missing-closing', 'h1', 'h2'); });
it('should be able to return common attributes of in an unknown tag', it('should be able to return common attributes of an unknown tag',
() => { contains('app/parsing-cases.ts', 'unknown-element', 'id', 'dir', 'lang'); }); () => { contains('app/parsing-cases.ts', 'unknown-element', 'id', 'dir', 'lang'); });
it('should be able to get the completions at the beginning of an interpolation', it('should be able to get the completions at the beginning of an interpolation',
() => { contains('app/app.component.ts', 'h2-hero', 'hero', 'title'); }); () => { contains('app/app.component.ts', 'h2-hero', 'hero', 'title'); });
it('should not include private members of the of a class', it('should not include private members of a class',
() => { contains('app/app.component.ts', 'h2-hero', '-internal'); }); () => { contains('app/app.component.ts', 'h2-hero', '-internal'); });
it('should be able to get the completions at the end of an interpolation', it('should be able to get the completions at the end of an interpolation',
() => { contains('app/app.component.ts', 'sub-end', 'hero', 'title'); }); () => { contains('app/app.component.ts', 'sub-end', 'hero', 'title'); });
it('should be able to get the completions in a property read', it('should be able to get the completions in a property',
() => { contains('app/app.component.ts', 'h2-name', 'name', 'id'); }); () => { contains('app/app.component.ts', 'h2-name', 'name', 'id'); });
it('should be able to get a list of pipe values', () => { it('should be able to get a list of pipe values', () => {
@ -98,7 +98,7 @@ describe('plugin', () => {
contains('app/parsing-cases.ts', 'after-pipe', 'lowercase', 'uppercase'); contains('app/parsing-cases.ts', 'after-pipe', 'lowercase', 'uppercase');
}); });
it('should be able get completions in an empty interpolation', it('should be able to get completions in an empty interpolation',
() => { contains('app/parsing-cases.ts', 'empty-interpolation', 'title', 'subTitle'); }); () => { contains('app/parsing-cases.ts', 'empty-interpolation', 'title', 'subTitle'); });
describe('with attributes', () => { describe('with attributes', () => {