We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff8bda7 commit 379e63fCopy full SHA for 379e63f
1 file changed
type-tests/api.ts
@@ -63,6 +63,7 @@ import {
63
DebugInfo as InternalDebugInfo,
64
DeprecationFailure,
65
Warning,
66
+ tab,
67
} from '@ember/test-helpers';
68
import { ComponentInstance } from '@glimmer/interfaces';
69
import { Owner } from '@ember/test-helpers/build-owner';
@@ -95,6 +96,15 @@ expectTypeOf(select).toEqualTypeOf<
95
96
keepPreviouslySelected?: boolean
97
) => Promise<void>
98
>();
99
+expectTypeOf(tab).toEqualTypeOf<
100
+ ({
101
+ backwards,
102
+ unRestrainTabIndex,
103
+ }?: {
104
+ backwards?: boolean | undefined;
105
+ unRestrainTabIndex?: boolean | undefined;
106
+ }) => Promise<void>
107
+>();
108
expectTypeOf(tap).toEqualTypeOf<
109
(target: Target, options?: TouchEventInit) => Promise<void>
110
0 commit comments