Skip to content

Commit

Permalink
fix: typos in spec descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mgechev committed Apr 20, 2017
1 parent 4df8a14 commit 38d73d2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/templateToNgTemplate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('template-to-ng-template', () => {
assertSuccess('template-to-ng-template', source);
});

it('should detect templete elements', () => {
it('should detect template elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand All @@ -28,7 +28,7 @@ describe('template-to-ng-template', () => {
});
});

it('should detect templete elements', () => {
it('should detect template elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand All @@ -43,7 +43,7 @@ describe('template-to-ng-template', () => {
});
});

it('should detect templete elements', () => {
it('should detect template elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand All @@ -60,9 +60,9 @@ describe('template-to-ng-template', () => {
});
});

xdescribe('autofixes', () => {
xdescribe('auto-fixes', () => {

it('should not autofix template suggar', () => {
it('should not auto-fix template sugar', () => {
let source = `
@Component({
selector: 'foobar',
Expand All @@ -72,7 +72,7 @@ describe('template-to-ng-template', () => {
assertSuccess('template-to-ng-template', source);
});

it('should fix template with no suggar', () => {
it('should fix template with no sugar', () => {
let source = `
@Component({
selector: 'foobar',
Expand All @@ -99,7 +99,7 @@ describe('template-to-ng-template', () => {
chai.expect(res).to.eq(expected);
});

it('should fix template with no suggar & nested templates', () => {
it('should fix template with no sugar & nested templates', () => {
let source = `
@Component({
selector: 'foobar',
Expand Down Expand Up @@ -128,7 +128,7 @@ describe('template-to-ng-template', () => {
chai.expect(res).to.eq(expected);
});

it('should fix template with templates & suggar', () => {
it('should fix template with templates & sugar', () => {
let source = `
@Component({
selector: 'foobar',
Expand Down Expand Up @@ -168,7 +168,7 @@ describe('template-to-ng-template', () => {
chai.expect(res).to.eq(expected);
});

it('should fix template with no suggar & nested templates & nested elements', () => {
it('should fix template with no sugar & nested templates & nested elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand Down Expand Up @@ -223,7 +223,7 @@ describe('template-to-ng-template', () => {
chai.expect(res).to.eq(expected);
});

it('should fix template with no suggar & nested templates & nested elements', () => {
it('should fix template with no sugar & nested templates & nested elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand Down Expand Up @@ -274,7 +274,7 @@ describe('template-to-ng-template', () => {
chai.expect(res).to.eq(expected);
});

it('should fix template with no suggar & nested templates & nested elements', () => {
it('should fix template with no sugar & nested templates & nested elements', () => {
let source = `
@Component({
selector: 'foobar',
Expand Down

0 comments on commit 38d73d2

Please sign in to comment.