Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more
Permalink
Tree: 24e0841ba5
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
11 lines (8 sloc) 413 Bytes
export type CftRequest = {
console: ConsoleSettings;
spyLibrary?: SupportedSpyLibrary;
testFramework?: SupportedTestFramework;
};
export type SupportedSpyLibrary = "fallback" | "jasmine" | "jest" | "sinon" | unknown;
export type SupportedTestFramework = "mocha" | "jasmine" | "jest" | unknown;
export type ConsoleSettings = { [P in keyof Console]?: Console[P] extends Function ? boolean : never };
You can’t perform that action at this time.