trisquel-icecat/icecat/toolkit/modules/tests/xpcshell/my_catman_1.sys.mjs
2025-10-06 02:35:48 -06:00

12 lines
247 B
JavaScript

export let Module1 = {
test(arg) {
Services.obs.notifyObservers(
null,
"test-modules-from-catman-notification",
arg
);
},
throwingFunction() {
throw new Error("Uh oh. I have a bad feeling about this.");
},
};