umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
23 lines (22 loc) • 567 B
TypeScript
export declare class MacroBuilder {
name: any;
renderInEditor: any;
useInEditor: any;
cacheByPage: any;
cacheByUser: any;
partialViewMacro: any;
withName(name: any): this;
withRenderInEditor(): this;
withUseInEditor(): this;
withCacheByPage(): this;
withCacheByUser(): this;
withPartialViewMacro(partialView: any): this;
build(): {
name: any;
renderInEditor: any;
useInEditor: any;
cacheByPage: any;
cacheByUser: any;
partialView: any;
};
}