export interface ComponentTestGeneratorSchema { /** A list of browsers to test against */ browserList: Array<'chrome' | 'firefox' | 'edge'>; /** A list of projects to exclude from the ci configuration */ excludeList?: Array; /** The cypress image to use for the tests */ cypressImage?: string; }