Skip to content

Commit fb86d97

Browse files
committed
chore: remove redundant standlone metadata
1 parent 9f406fe commit fb86d97

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

projects/hyperdash-angular/src/test/test-utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ export const mockDirective = <T = unknown>(config: {
77
inputs?: string[];
88
outputs?: string[];
99
standalone?: boolean;
10-
}): Type<T> => {
11-
return Directive({ standalone: true, ...config })(class {} as Type<T>);
12-
};
10+
}): Type<T> => Directive({ standalone: true, ...config })(class {} as Type<T>);
1311

1412
export const getTestScheduler = () =>
1513
new TestScheduler((actual: unknown, expected: unknown) => {

0 commit comments

Comments
 (0)