TestRegistrantInvalidConfigs.sys.mjs (392B)
1 /* Any copyright is dedicated to the Public Domain. 2 * http://creativecommons.org/publicdomain/zero/1.0/ 3 */ 4 5 import { BaseAboutNewTabComponentRegistrant } from "moz-src:///browser/components/newtab/AboutNewTabComponents.sys.mjs"; 6 7 export class TestRegistrantInvalidConfigs extends BaseAboutNewTabComponentRegistrant { 8 getComponents() { 9 return [{}, { type: "" }, { type: null }]; 10 } 11 }