Skip to content

Commit

Permalink
Print os info in test
Browse files Browse the repository at this point in the history
  • Loading branch information
karaggeorge committed Nov 17, 2024
1 parent c154427 commit 1762f32
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import fs from 'node:fs';
import os from 'node:os';
import test from 'ava';
import delay from 'delay';
import {fileTypeFromBuffer} from 'file-type';
Expand All @@ -10,6 +11,8 @@ import {
videoCodecs,
} from './index.js';

console.log(`Running on macOS ${os.arch()} ${os.version()}`);

test('returns audio devices', async t => {
const devices = await audioDevices();
console.log('Audio devices:', devices);
Expand Down

0 comments on commit 1762f32

Please sign in to comment.