import { describe, test, expect } from 'vitest' import { buildGather } from './gather.js' describe('The gather function', () => { test('should be able to determine system information', async () => { const gather = buildGather() const device = await gather() expect(device.value?.fingerprint.length).toBeGreaterThan(0) expect(device.value?.hardware).toBeDefined() }) })