@instructure/ui-tooltip 10.19.2-snapshot-2 → 10.19.2-snapshot-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,198 +0,0 @@
1
- /*
2
- * The MIT License (MIT)
3
- *
4
- * Copyright (c) 2015 - present Instructure, Inc.
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- */
24
-
25
- import { render, screen, waitFor } from '@testing-library/react'
26
- import { vi } from 'vitest'
27
- import type { MockInstance } from 'vitest'
28
- import userEvent from '@testing-library/user-event'
29
- import '@testing-library/jest-dom'
30
-
31
- // eslint-disable-next-line no-restricted-imports
32
- import { generateA11yTests } from '@instructure/ui-scripts/lib/test/generateA11yTests'
33
- import { runAxeCheck } from '@instructure/ui-axe-check'
34
-
35
- import { Tooltip } from '../index'
36
- import TooltipExamples from '../__examples__/Tooltip.examples'
37
-
38
- describe('<Tooltip />', () => {
39
- let consoleErrorMock: ReturnType<typeof vi.spyOn>
40
-
41
- beforeEach(() => {
42
- // Mocking console to prevent test output pollution and expect for messages
43
- consoleErrorMock = vi
44
- .spyOn(console, 'error')
45
- .mockImplementation(() => {}) as MockInstance
46
- })
47
-
48
- afterEach(() => {
49
- consoleErrorMock.mockRestore()
50
- })
51
-
52
- it('should render', async () => {
53
- render(
54
- <Tooltip renderTip="Hello">
55
- <a href="example.html">Hover or focus me</a>
56
- </Tooltip>
57
- )
58
- const tip = screen.getByRole('tooltip')
59
-
60
- expect(tip).toBeInTheDocument()
61
- expect(tip).toHaveTextContent('Hello')
62
- })
63
-
64
- it('should render children', async () => {
65
- render(
66
- <Tooltip renderTip="Hello">
67
- <a data-testid="trigger" href="example.html">
68
- Hover or focus me
69
- </a>
70
- </Tooltip>
71
- )
72
-
73
- const tip = screen.getByRole('tooltip')
74
- const trigger = screen.getByTestId('trigger')
75
-
76
- expect(trigger).toBeInTheDocument()
77
- expect(trigger).toHaveTextContent('Hover or focus me')
78
- expect(trigger).toHaveAttribute('href', 'example.html')
79
- expect(tip).toHaveTextContent('Hello')
80
- })
81
-
82
- it('should have an aria-describedby attribute', async () => {
83
- render(
84
- <Tooltip renderTip={<h2>Hello</h2>}>
85
- <a data-testid="trigger" href="example.html">
86
- Hover or focus me
87
- </a>
88
- </Tooltip>
89
- )
90
- const trigger = screen.getByTestId('trigger')
91
- const tooltip = screen.getByRole('tooltip')
92
-
93
- expect(trigger).toHaveAttribute('aria-describedby', tooltip.id)
94
- })
95
-
96
- it('should accept a function for renderTip', async () => {
97
- render(
98
- <Tooltip renderTip={() => 'Hello'}>
99
- <a href="example.html">Hover or focus me</a>
100
- </Tooltip>
101
- )
102
-
103
- const content = screen.getByText('Hello')
104
-
105
- expect(content).toBeInTheDocument()
106
- })
107
-
108
- describe('using as', () => {
109
- it('should render children', async () => {
110
- render(
111
- <Tooltip
112
- renderTip={<h2>Hello</h2>}
113
- placement="end"
114
- as="a"
115
- href="example.html"
116
- >
117
- Hover or focus me
118
- </Tooltip>
119
- )
120
-
121
- const tip = screen.getByRole('tooltip')
122
- const trigger = screen.getByText('Hover or focus me')
123
-
124
- expect(trigger).toBeInTheDocument()
125
- expect(trigger).toHaveAttribute('href', 'example.html')
126
- expect(trigger.tagName).toBe('A')
127
-
128
- expect(tip).toBeInTheDocument()
129
- expect(tip).toHaveTextContent('Hello')
130
- })
131
-
132
- it('should have an aria-describedby attribute', async () => {
133
- render(
134
- <Tooltip
135
- renderTip={<h2>Hello</h2>}
136
- placement="end"
137
- as="a"
138
- href="example.html"
139
- >
140
- Hover or focus me
141
- </Tooltip>
142
- )
143
-
144
- const trigger = screen.getByText('Hover or focus me')
145
- const tooltip = screen.getByRole('tooltip')
146
-
147
- expect(trigger).toHaveAttribute('aria-describedby', tooltip.id)
148
- })
149
-
150
- it('should pass down the href attribute', async () => {
151
- render(
152
- <Tooltip
153
- renderTip={<h2>Hello</h2>}
154
- placement="end"
155
- as="a"
156
- href="example.html"
157
- >
158
- Hover or focus me
159
- </Tooltip>
160
- )
161
-
162
- const link = screen.getByText('Hover or focus me')
163
-
164
- expect(link).toHaveAttribute('href', 'example.html')
165
- })
166
- })
167
-
168
- describe('using children', () => {
169
- it('should call onClick of child', async () => {
170
- const onClick = vi.fn()
171
-
172
- render(
173
- <Tooltip renderTip={<h2>Hello</h2>}>
174
- <button onClick={onClick}>Hover or focus me</button>
175
- </Tooltip>
176
- )
177
-
178
- const button = screen.getByText('Hover or focus me')
179
-
180
- await userEvent.click(button)
181
-
182
- await waitFor(() => {
183
- expect(onClick).toHaveBeenCalledTimes(1)
184
- })
185
- })
186
- })
187
-
188
- describe('with generated examples', () => {
189
- const generatedComponents = generateA11yTests(Tooltip, TooltipExamples)
190
- for (const component of generatedComponents) {
191
- it(component.description, async () => {
192
- const { container } = render(component.content)
193
- const axeCheck = await runAxeCheck(container)
194
- expect(axeCheck).toBe(true)
195
- })
196
- }
197
- })
198
- })
@@ -1,30 +0,0 @@
1
- /*
2
- * The MIT License (MIT)
3
- *
4
- * Copyright (c) 2015 - present Instructure, Inc.
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- */
24
-
25
- import { TooltipLocator } from './TooltipLocator'
26
-
27
- export { customMethods } from './TooltipLocator'
28
-
29
- export { TooltipLocator }
30
- export default TooltipLocator
@@ -1,329 +0,0 @@
1
- export declare const customMethods: {
2
- findTrigger: (...args: any[]) => Promise<any>;
3
- findContent: (...args: any[]) => Promise<any>;
4
- };
5
- export declare const TooltipLocator: {
6
- customMethods: {
7
- findTrigger: (...args: any[]) => Promise<any>;
8
- findContent: (...args: any[]) => Promise<any>;
9
- };
10
- selector: string;
11
- query: (...args: import("@instructure/ui-test-locator").QueryArguments) => Element;
12
- queryAll: {
13
- (element: Element, selector: string | undefined, options: import("@instructure/ui-test-locator").SelectorOptions): Element[];
14
- displayName: string;
15
- };
16
- findAll: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<(import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
17
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
18
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
19
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
20
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
21
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
22
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
23
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
24
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
25
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
26
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
27
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
28
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
29
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
30
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
31
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
32
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
33
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
34
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
35
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
36
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
37
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
38
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
39
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
40
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
41
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
42
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
43
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
44
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
45
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
46
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
47
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
48
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
49
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
50
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
51
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
52
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
53
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
54
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
55
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
56
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
57
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
58
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
59
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
60
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
61
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
62
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
63
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
64
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
65
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
66
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
67
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
68
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
69
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
70
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
71
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
72
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
73
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
74
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
75
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
76
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
77
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
78
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
79
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
80
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
81
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
82
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
83
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
84
- } & {
85
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
86
- } & {
87
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
88
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
89
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
90
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
91
- findTrigger: (...args: any[]) => Promise<any>;
92
- findContent: (...args: any[]) => Promise<any>;
93
- }>)[]>;
94
- find: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
95
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
96
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
97
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
98
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
99
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
100
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
101
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
102
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
103
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
104
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
105
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
106
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
107
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
108
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
109
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
110
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
111
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
112
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
113
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
114
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
115
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
116
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
117
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
118
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
119
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
120
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
121
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
122
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
123
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
124
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
125
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
126
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
127
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
128
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
129
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
130
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
131
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
132
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
133
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
134
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
135
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
136
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
137
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
138
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
139
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
140
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
141
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
142
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
143
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
144
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
145
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
146
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
147
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
148
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
149
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
150
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
151
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
152
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
153
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
154
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
155
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
156
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
157
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
158
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
159
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
160
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
161
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
162
- } & {
163
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
164
- } & {
165
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
166
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
167
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
168
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
169
- findTrigger: (...args: any[]) => Promise<any>;
170
- findContent: (...args: any[]) => Promise<any>;
171
- }>>;
172
- findWithText: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
173
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
174
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
175
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
176
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
177
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
178
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
179
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
180
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
181
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
182
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
183
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
184
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
185
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
186
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
187
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
188
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
189
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
190
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
191
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
192
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
193
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
194
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
195
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
196
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
197
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
198
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
199
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
200
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
201
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
202
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
203
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
204
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
205
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
206
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
207
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
208
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
209
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
210
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
211
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
212
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
213
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
214
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
215
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
216
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
217
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
218
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
219
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
220
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
221
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
222
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
223
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
224
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
225
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
226
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
227
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
228
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
229
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
230
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
231
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
232
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
233
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
234
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
235
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
236
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
237
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
238
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
239
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
240
- } & {
241
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
242
- } & {
243
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
244
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
245
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
246
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
247
- findTrigger: (...args: any[]) => Promise<any>;
248
- findContent: (...args: any[]) => Promise<any>;
249
- }>>;
250
- findWithLabel: (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<import("@instructure/ui-test-locator").QueryTypes & import("@instructure/ui-test-locator").HelperTypes & {
251
- copy: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
252
- cut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
253
- paste: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
254
- compositionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
255
- compositionStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
256
- compositionUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
257
- focus: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
258
- focusIn: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
259
- focusOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
260
- change: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
261
- beforeInput: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
262
- input: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
263
- invalid: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
264
- submit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
265
- click: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
266
- contextMenu: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
267
- dblClick: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
268
- drag: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
269
- dragEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
270
- dragEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
271
- dragExit: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
272
- dragLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
273
- dragOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
274
- dragStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
275
- drop: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
276
- mouseDown: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
277
- mouseEnter: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
278
- mouseLeave: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
279
- mouseMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
280
- mouseOut: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
281
- mouseOver: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
282
- mouseUp: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
283
- select: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
284
- touchCancel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
285
- touchEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
286
- touchMove: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
287
- touchStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
288
- scroll: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
289
- wheel: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
290
- abort: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
291
- canPlay: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
292
- canPlayThrough: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
293
- durationChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
294
- emptied: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
295
- encrypted: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
296
- ended: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
297
- loadedData: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
298
- loadedMetadata: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
299
- loadStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
300
- pause: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
301
- play: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
302
- playing: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
303
- progress: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
304
- rateChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
305
- seeked: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
306
- seeking: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
307
- stalled: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
308
- suspend: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
309
- timeUpdate: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
310
- volumeChange: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
311
- waiting: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
312
- load: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
313
- error: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
314
- animationStart: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
315
- animationEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
316
- animationIteration: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
317
- transitionEnd: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
318
- } & {
319
- blur: (init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event | void>;
320
- } & {
321
- keyDown: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
322
- keyPress: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
323
- keyUp: (whichKey?: string | number, init?: import("@instructure/ui-test-locator").FireEventInit, options?: Record<string, unknown>) => Promise<Event>;
324
- } & import("@instructure/ui-test-locator").ObjWithCutFirstArg<{
325
- findTrigger: (...args: any[]) => Promise<any>;
326
- findContent: (...args: any[]) => Promise<any>;
327
- }>>;
328
- } & Record<"findTrigger" | "findContent", (...args: import("@instructure/ui-test-locator").QueryArguments) => Promise<unknown>>;
329
- //# sourceMappingURL=TooltipLocator.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TooltipLocator.d.ts","sourceRoot":"","sources":["../../src/Tooltip/TooltipLocator.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- import '@testing-library/jest-dom';
2
- //# sourceMappingURL=Tooltip.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Tooltip.test.d.ts","sourceRoot":"","sources":["../../../src/Tooltip/__new-tests__/Tooltip.test.tsx"],"names":[],"mappings":"AA4BA,OAAO,2BAA2B,CAAA"}
@@ -1,5 +0,0 @@
1
- import { TooltipLocator } from './TooltipLocator';
2
- export { customMethods } from './TooltipLocator';
3
- export { TooltipLocator };
4
- export default TooltipLocator;
5
- //# sourceMappingURL=locator.d.ts.map