Skip to content

Commit 1762f32

Browse files
committed
Print os info in test
1 parent c154427 commit 1762f32

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import fs from 'node:fs';
2+
import os from 'node:os';
23
import test from 'ava';
34
import delay from 'delay';
45
import {fileTypeFromBuffer} from 'file-type';
@@ -10,6 +11,8 @@ import {
1011
videoCodecs,
1112
} from './index.js';
1213

14+
console.log(`Running on macOS ${os.arch()} ${os.version()}`);
15+
1316
test('returns audio devices', async t => {
1417
const devices = await audioDevices();
1518
console.log('Audio devices:', devices);

0 commit comments

Comments
 (0)