summaryrefslogtreecommitdiffstats
path: root/src/__mocks__/tabbable.js
blob: 70b8842ed7bb8cebcf4d0c4eb3d1dbd2ddd45f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
// https://github.com/focus-trap/tabbable#testing-in-jsdom
const lib = jest.requireActual('tabbable')

const tabbable = {
	...lib,
	tabbable: (node, options) => lib.tabbable(node, { ...options, displayCheck: 'none' }),
	focusable: (node, options) => lib.focusable(node, { ...options, displayCheck: 'none' }),
	isFocusable: (node, options) => lib.isFocusable(node, { ...options, displayCheck: 'none' }),
	isTabbable: (node, options) => lib.isTabbable(node, { ...options, displayCheck: 'none' }),
}

module.exports = tabbable