mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { detectOperatingSystem } from '../../src/utils/basic'
|
|
|
|
describe('detectOperatingSystem', () => {
|
|
it('should return Unknown', () => {
|
|
expect(detectOperatingSystem()).toBe('Unknown')
|
|
})
|
|
})
|