From 0e14eea59b8afafdfcfa546a5d0aa66f592e762d Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 29 May 2024 11:36:50 +0600 Subject: [PATCH] tests: add loom tests --- src/test/tests.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/test/tests.json b/src/test/tests.json index 565fa5a4..27b9e1fa 100644 --- a/src/test/tests.json +++ b/src/test/tests.json @@ -1123,5 +1123,34 @@ "code": 200, "status": "stream" } + }], + "loom": [{ + "name": "1080p video", + "url": "https://www.loom.com/share/313bf71d20ca47b2a35b6634cefdb761", + "params": {}, + "expected": { + "code": 200, + "status": "redirect" + } + }, { + "name": "1080p video (muted)", + "url": "https://www.loom.com/share/313bf71d20ca47b2a35b6634cefdb761", + "params": { + "isAudioMuted": true + }, + "expected": { + "code": 200, + "status": "stream" + } + }, { + "name": "1080p video (audio only)", + "url": "https://www.loom.com/share/313bf71d20ca47b2a35b6634cefdb761", + "params": { + "isAudioOnly": true + }, + "expected": { + "code": 200, + "status": "stream" + } }] }