umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
24 lines (23 loc) • 507 B
TypeScript
export declare class PartialViewBuilder {
name: any;
content: any;
filetype: any;
id: any;
notifications: any;
path: any;
snippet: any;
virtualPath: any;
withContent(content: any): this;
withName(name: any): this;
withId(id: number): this;
build(): {
name: any;
content: any;
filetype: any;
id: any;
notifications: any;
path: any;
snippet: any;
virtualPath: any;
};
}