Skip to content

Commit 046cabe

Browse files
committed
fix(grid): fix some tests for summaryTemplate
1 parent 83e56a9 commit 046cabe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/grid/column.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ describe('IgxGrid - Column properties #grid', () => {
6464

6565
headerSpans.forEach((span) => expect(span.nativeElement.textContent).toMatch('Header text'));
6666
cellSpans.forEach((span) => expect(span.nativeElement.textContent).toMatch('Cell text'));
67-
summarySpans.forEach((span) => expect(span.nativeElement.textContent).toMatch('Summarry text'));
67+
summarySpans.forEach((span) => expect(span.nativeElement.textContent).toMatch('Summary text'));
6868
});
6969

7070
it('should provide a way to change templates dynamically', () => {
@@ -1210,7 +1210,7 @@ export class TemplatedColumnsComponent {
12101210
<span class="customEditorTemplate">{{ value }}</span>
12111211
</ng-template>
12121212
1213-
<ng-template #summaryTemplate igxSummary let-summaryResults>
1213+
<ng-template #summary igxSummary let-summaryResults>
12141214
<span class="customSummaryTemplate">{{ summaryResults[0].label }}: {{ summaryResults[0].summaryResult }}</span>
12151215
</ng-template>
12161216
`

0 commit comments

Comments
 (0)