Skip to content

Commit

Permalink
feat(ng-mat-core): Add SlDialogHarness
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Dec 18, 2021
1 parent cad4dc7 commit 2478777
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion projects/integration/src/app/api-tests/ng-mat-core.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import { SlDialogModule, SlDialogService } from '@s-libs/ng-mat-core';
import {
SlDialogHarness,
SlDialogModule,
SlDialogService,
} from '@s-libs/ng-mat-core';

describe('ng-mat-core', () => {
it('has SlDialogHarness', () => {
expect(SlDialogHarness).toBeDefined();
});

it('has SlDialogModule', () => {
expect(SlDialogModule).toBeDefined();
});
Expand Down
1 change: 1 addition & 0 deletions projects/ng-mat-core/src/lib/dialog/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ export {
DialogData,
SL_DIALOG_DATA,
} from './dialog.component';
export { SlDialogHarness } from './sl-dialog.harness';
export { SlDialogModule } from './sl-dialog.module';
export { SlDialogService } from './sl-dialog.service';

0 comments on commit 2478777

Please sign in to comment.