49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
|
|
import {Component} from '@angular/core';
|
||
|
|
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
||
|
|
import {HarnessLoader} from '@angular/cdk/testing';
|
||
|
|
import {TestbedHarnessEnvironment} from '@angular/cdk/testing/testbed';
|
||
|
|
import {MatDividerModule} from '@angular/material/divider';
|
||
|
|
import {MatDividerHarness} from './divider-harness';
|
||
|
|
|
||
|
|
describe('MatLegacyButtonHarness', () => {
|
||
|
|
let fixture: ComponentFixture<DividerHarnessTest>;
|
||
|
|
let loader: HarnessLoader;
|
||
|
|
|
||
|
|
beforeEach(() => {
|
||
|
|
TestBed.configureTestingModule({
|
||
|
|
imports: [MatDividerModule, DividerHarnessTest],
|
||
|
|
});
|
||
|
|
|
||
|
|
fixture = TestBed.createComponent(DividerHarnessTest);
|
||
|
|
fixture.detectChanges();
|
||
|
|
loader = TestbedHarnessEnvironment.loader(fixture);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should load all divider harnesses', async () => {
|
||
|
|
const dividers = await loader.getAllHarnesses(MatDividerHarness);
|
||
|
|
expect(dividers.length).toBe(2);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should check if divider is inset', async () => {
|
||
|
|
const dividers = await loader.getAllHarnesses(MatDividerHarness);
|
||
|
|
expect(await dividers[0].isInset()).toBe(false);
|
||
|
|
expect(await dividers[1].isInset()).toBe(true);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('should get divider orientation', async () => {
|
||
|
|
const dividers = await loader.getAllHarnesses(MatDividerHarness);
|
||
|
|
expect(await dividers[0].getOrientation()).toBe('horizontal');
|
||
|
|
expect(await dividers[1].getOrientation()).toBe('vertical');
|
||
|
|
});
|
||
|
|
});
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
template: `
|
||
|
|
<mat-divider></mat-divider>
|
||
|
|
<mat-divider inset vertical></mat-divider>
|
||
|
|
`,
|
||
|
|
standalone: true,
|
||
|
|
imports: [MatDividerModule],
|
||
|
|
})
|
||
|
|
class DividerHarnessTest {}
|