network: detect default ipv6 interface when no ipv4 interface

This commit is contained in:
Girish Ramakrishnan
2025-11-28 09:56:13 +01:00
parent 924ea435b1
commit 2a3110cd3d
3 changed files with 41 additions and 13 deletions
+6
View File
@@ -141,4 +141,10 @@ describe('Network', function () {
expect(await network.getDynamicDns()).to.be(true);
});
});
describe('Default interface', function () {
it('can get default interface', async function () {
expect(await network.getDefaultInterface()).to.be.ok();
});
});
});