From 085204dbdf17f379c9a32ea11660accb51b4311d Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Mon, 6 Apr 2026 14:48:43 +0000 Subject: Update dependencies and ECMAScript target Fix relevant breaking changes. --- webAO/__tests__/isAudio.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webAO/__tests__/isAudio.test.ts') diff --git a/webAO/__tests__/isAudio.test.ts b/webAO/__tests__/isAudio.test.ts index 327a0de..f5b84ef 100644 --- a/webAO/__tests__/isAudio.test.ts +++ b/webAO/__tests__/isAudio.test.ts @@ -19,11 +19,10 @@ describe('isAudio', () => { expect(isAudio('')).toBe(false); // Empty string expect(isAudio(undefined)).toBe(false); // Undefined input expect(isAudio(null)).toBe(false); // Null input - expect(isAudio({})).toBe(false); // Invalid type (object) }); test('should return true for files with multiple valid extensions', () => { expect(isAudio('file.wav.mp3')).toBe(true); expect(isAudio('track.ogg.opus')).toBe(true); }); -}); \ No newline at end of file +}); -- cgit