import {TestModule, TestModuleDefinitions} from './TestModule'; export const TOO_SHORT_MODULE_NAME = ''; /** * This module is used for testing. */ export class TestModuleWithNameTooShort extends TestModule { state: TestModuleDefinitions.State; constructor(props: TestModuleDefinitions.Props) { super(props); } public getModuleRegistrationName(): string { return TOO_SHORT_MODULE_NAME; } }