Add test to filter out /boot

This commit is contained in:
Johannes Zellner
2025-08-21 10:55:05 +02:00
parent 937dd2be5e
commit 7bf4b23ee5
+1
View File
@@ -172,6 +172,7 @@ describe('System', function () {
expect(response.body.devices).to.be.ok();
expect(response.body.devices.some(d => d.mountpoint === '/')).to.be(true);
expect(response.body.devices.some(d => d.mountpoint === '/boot')).to.be(false);
});
});
});