mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* chai: Add types for chai.use and chai.util Helps developers write Chai plugins; requested in #29922. Closes #29922. * Updated dependencies on Chai - Minimum TS version: 3.0 - Version bumps to TS 3.0 for the following type definitions which depend on chai directly or indirectly: bardjs, chai, chai-almost, chai-arrays, chai-as-promised, chai-datetime, chai-dom, chai-enzyme, chai-fs, chai-fuzzy, chai-jest-snapshot, chai-jquery, chai-json-schema, chai-moment, chai-oequal, chai-roughly, chai-spies, chai-string, chai-subset, chai-things, chai-uuid, chai-webdriverio, chai-xml, d3kit, deep-equal-in-any-order, dirty-chai, ember-mocha, hexo, hexo-log, hexo-util, jsx-chai, karma-chai, karma-chai-sinon, redux-test-utils, and sinon-chai - Use Chai.ChaiPlugin instead of (chai: any, utils: any) => void * Factor out pathval types - Forgot that the pathval types aren't merged yet * Factor out pathval types - Forgot that the pathval types aren't merged yet * Make 'chainingBehavior' non-mandatory
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
// Type definitions for chai-dom
|
|
// Project: https://github.com/nathanboktae/chai-dom
|
|
// Definitions by: Matt Lewis <https://github.com/mattlewis92>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
/// <reference types="chai" />
|
|
|
|
declare namespace Chai {
|
|
|
|
interface Assertion {
|
|
|
|
attr(name: string, value?: string): Assertion;
|
|
|
|
attribute(name: string, value?: string): Assertion;
|
|
|
|
class(className: string): Assertion;
|
|
|
|
id(id: string): Assertion;
|
|
|
|
html(html: string): Assertion;
|
|
|
|
text(text: string|string[]): Assertion;
|
|
|
|
value(text: string): Assertion;
|
|
|
|
empty: Assertion;
|
|
|
|
// exist, length, and contain are already defined in @types/chai and have the
|
|
// same type or a more general type, so don't need to be re-declared even though
|
|
// the implementation is different
|
|
|
|
descendant(element: string|HTMLElement): Assertion;
|
|
|
|
descendants(selector: string): Assertion;
|
|
|
|
displayed: Assertion;
|
|
|
|
trimmed: Assertion;
|
|
|
|
}
|
|
|
|
interface Include {
|
|
|
|
text(text: string|string[]): Assertion;
|
|
|
|
html(text: string|string[]): Assertion;
|
|
|
|
}
|
|
|
|
interface Match {
|
|
|
|
(selector: string): Assertion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
declare module "chai-dom" {
|
|
const chaiDom: Chai.ChaiPlugin;
|
|
export = chaiDom;
|
|
}
|