We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2efb0de commit b44cfd8Copy full SHA for b44cfd8
1 file changed
tests/osn-tests/src/test_osn_audio.ts
@@ -66,6 +66,7 @@ describe(testName, () => {
66
for (const device of devices) {
67
expect(device).to.have.property('id');
68
expect(device).to.have.property('description');
69
+ logInfo(testName, `Output Audio Device Found: ${device.description} with id: ${device.id}`);
70
if (device.id === 'default') {
71
foundDefaultDevice = true;
72
}
@@ -83,6 +84,7 @@ describe(testName, () => {
83
84
85
86
87
+ logInfo(testName, `Input Audio Device Found: ${device.description} with id: ${device.id}`);
88
89
90
0 commit comments