umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
12 lines (11 loc) • 378 B
TypeScript
import CommandBase from './commandBase';
/**
* This will set the currently logged in Users language
*
* @param language The iso code for the language you want
* @returns The JSON data in the body of the response as an object
*/
export default class UmbracoSetCurrentUserLanguage extends CommandBase {
_commandName: string;
method(language: any): void;
}