Co-authored-by: Vincent <Vinnl@users.noreply.github.com>
This commit is contained in:
Florian Zia 2023-11-24 14:44:07 +01:00 коммит произвёл GitHub
Родитель 7403682b78
Коммит c700533a87
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -12,6 +12,11 @@ import failOnConsole from "jest-fail-on-console";
import * as globalStorybookConfig from "./.storybook/preview";
import "jest-axe/extend-expect";
// `@types/jest-axe` doesn't extend `expect` when imported from `@jest/globals`.
// This manually sets the correct type. Note that it has to extend the
// TestingLibraryMatchers to avoid overriding those.
// Also see
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/67495
declare module "expect" {
interface Matchers<R = void>
extends TestingLibraryMatchers<typeof expect.stringContaining, R> {