Skip to content

Commit 5279faf

Browse files
committed
remove test
1 parent f75c3d2 commit 5279faf

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/cdk/table/text-column.spec.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,6 @@ describe('CdkTextColumn', () => {
9292
]);
9393
});
9494

95-
it('should be able to justify the text', () => {
96-
component.justifyC = 'end';
97-
fixture.detectChanges();
98-
99-
const headers = tableElement.querySelectorAll('th');
100-
expect(headers[1].style.textAlign).toBe('start');
101-
expect(headers[2].style.textAlign).toBe('end');
102-
103-
const cells = tableElement.querySelectorAll('td');
104-
expect(cells[1].style.textAlign).toBe('start');
105-
expect(cells[2].style.textAlign).toBe('end');
106-
});
107-
10895
describe('with options', () => {
10996
function createTestComponent(options: TextColumnOptions<any>) {
11097
// Reset the previously configured testing module to be able set new providers.

0 commit comments

Comments
 (0)