Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
TooltipDirective
} from '@hypertrace/components';
import { createComponentFactory } from '@ngneat/spectator/jest';
import { MockComponent, MockPipe } from 'ng-mocks';
import { MockDirective, MockPipe } from 'ng-mocks';
import { tableCellDataProvider } from '../../test/cell-providers';
import {
RelativeTimestampTableCellRendererComponent,
Expand All @@ -24,7 +24,7 @@ describe('relative timestamp table cell renderer component', () => {
new TableCellNoOpParser(undefined!)
)
],
declarations: [MockComponent(TooltipDirective), MockPipe(DisplayDatePipe)],
declarations: [MockDirective(TooltipDirective), MockPipe(DisplayDatePipe)],
shallow: true
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
TooltipDirective
} from '@hypertrace/components';
import { createComponentFactory } from '@ngneat/spectator/jest';
import { MockComponent } from 'ng-mocks';
import { MockDirective } from 'ng-mocks';
import { ExitCallsTableCellRendererComponent } from './exit-calls-table-cell-renderer.component';

describe('Exit Calls table cell renderer component', () => {
Expand All @@ -19,7 +19,7 @@ describe('Exit Calls table cell renderer component', () => {
new TableCellNoOpParser(undefined!)
)
],
declarations: [MockComponent(TooltipDirective)],
declarations: [MockDirective(TooltipDirective)],
shallow: true
});

Expand Down