UNPKG

enzyme-matchers

Version:
18 lines (16 loc) 347 B
/** * This source code is licensed under the MIT-style license found in the * LICENSE file in the root directory of this source tree. * * * @providesModule Matcher * @flow */ export type Matcher = { pass: boolean, message: string, negatedMessage: string, contextualInformation: { actual?: string, expected?: string, }, };