Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
*/
import { BaseAboutNewTabComponentRegistrant } from "moz-src:///browser/components/newtab/AboutNewTabComponents.sys.mjs";
export class TestRegistrantInvalidConfigs extends BaseAboutNewTabComponentRegistrant {
getComponents() {
return [{}, { type: "" }, { type: null }];
}
}