We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f406fe commit fb86d97Copy full SHA for fb86d97
projects/hyperdash-angular/src/test/test-utils.ts
@@ -7,9 +7,7 @@ export const mockDirective = <T = unknown>(config: {
7
inputs?: string[];
8
outputs?: string[];
9
standalone?: boolean;
10
-}): Type<T> => {
11
- return Directive({ standalone: true, ...config })(class {} as Type<T>);
12
-};
+}): Type<T> => Directive({ standalone: true, ...config })(class {} as Type<T>);
13
14
export const getTestScheduler = () =>
15
new TestScheduler((actual: unknown, expected: unknown) => {
0 commit comments