diff --git a/packages/app-tests/sidebarToolbarTooltip.test.ts b/packages/app-tests/sidebarToolbarTooltip.test.ts
new file mode 100644
index 000000000..97005585c
--- /dev/null
+++ b/packages/app-tests/sidebarToolbarTooltip.test.ts
@@ -0,0 +1,22 @@
+import { strict as assert } from "node:assert";
+import { readFileSync } from "node:fs";
+import { test } from "vitest";
+
+const connectionTreeSource = readFileSync("apps/desktop/src/components/sidebar/ConnectionTree.vue", "utf8");
+const toolbarStart = connectionTreeSource.indexOf(' {
+ for (const tooltip of [
+ ``,
+ ``,
+ ``,
+ ``,
+ ]) {
+ assert.ok(toolbarSource.includes(tooltip));
+ }
+
+ assert.doesNotMatch(toolbarSource, /:title="t\('sidebar\.(?:locateActiveTab|showActiveConnectionsOnly)'\)"/);
+ assert.doesNotMatch(toolbarSource, /:trigger-title="t\('sidebar\.(?:sortConnections|filterByType)'\)"/);
+});