@flopflip/cypress-plugin
Version:
A plugin for Cypress change feature toggles in Cypress runs
12 lines (8 loc) • 362 B
text/typescript
import { TAdapterIdentifiers } from '@flopflip/types';
type TCypressPluginAddCommandOptions = {
adapterId: TAdapterIdentifiers;
};
declare const addCommands: (options: TCypressPluginAddCommandOptions) => void;
declare const install: (_on: any) => void;
declare const version = "__@FLOPFLIP/VERSION_OF_RELEASE__";
export { addCommands, install, version };