UNPKG

jest-allure2-reporter

Version:
9 lines (6 loc) 322 B
/* eslint-disable-next-line node/no-unpublished-import */ import type { JestAssertionError } from 'expect'; import { isObject } from './vendor'; export function isJestAssertionError(error: unknown): error is JestAssertionError { return isObject(error) && 'matcherResult' in (error as unknown as JestAssertionError); }