Updates to dbus
Rolling release / release (push) Successful in 11m10s

This commit is contained in:
2026-09-11 19:51:45 -04:00
parent 0d85553120
commit d8d4f18e10
2 changed files with 10 additions and 1 deletions
+6
View File
@@ -112,3 +112,9 @@ test('GNOME GI imports expose default namespaces and panel has a real menu', ()
assert.match(source, /PushToTalk/);
assert.match(source, /finalizeReply/);
});
test('D-Bus confirmation signal does not call missing Interface.emit', () => {
const dbusSource = readFileSync(new URL('../daemon/dbus-service.js', import.meta.url), 'utf8');
assert.match(dbusSource, /ConfirmationRequired\(tool, args, pattern\) \{ return \[String\(tool\)/);
assert.doesNotMatch(dbusSource, /ConfirmationRequired\(tool, args, pattern\) \{ this\.emit/);
});