Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
adisreyaj committed Sep 21, 2023
1 parent 6f2e2bf commit 97f489b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import { LoaderComponent } from './loader/loader.component';
import { LoadAsyncWrapperComponent } from './wrapper/load-async-wrapper.component';

describe('Load Async directive', () => {
let spectator: SpectatorDirective<LoadAsyncDirective, { data$: Observable<string> }>;
let spectator: SpectatorDirective<LoadAsyncDirective<unknown>, { data$: Observable<string> }>;

const createDirective = createDirectiveFactory<LoadAsyncDirective, { data$: Observable<string> }>({
const createDirective = createDirectiveFactory<LoadAsyncDirective<unknown>, { data$: Observable<string> }>({
directive: LoadAsyncDirective,
declarations: [LoadAsyncWrapperComponent, MessageDisplayComponent, LoaderComponent],
entryComponents: [LoadAsyncWrapperComponent],
Expand Down

0 comments on commit 97f489b

Please sign in to comment.