dep updates (#6058)

This commit is contained in:
Anthony Stirling
2026-04-03 13:24:41 +01:00
committed by GitHub
parent 2c940569d1
commit 3c48740c5e
5 changed files with 23 additions and 47 deletions

View File

@@ -251,34 +251,6 @@ Feature: API Validation
And the response ZIP should contain 3 files
@ffmpeg @positive @pdftovideo
Scenario: Convert PDF to video (MP4)
Given I generate a PDF file as "fileInput"
And the pdf contains 3 pages with random text
And the request data includes
| parameter | value |
| videoFormat | mp4 |
| fps | 1 |
When I send the API request to the endpoint "/api/v1/convert/pdf/video"
Then the response status code should be 200
And the response file should have size greater than 1000
And the response file should have extension ".mp4"
@ffmpeg @positive @pdftovideo
Scenario: Convert PDF to video (WebM)
Given I generate a PDF file as "fileInput"
And the pdf contains 2 pages with random text
And the request data includes
| parameter | value |
| videoFormat | webm |
| fps | 2 |
When I send the API request to the endpoint "/api/v1/convert/pdf/video"
Then the response status code should be 200
And the response file should have size greater than 1000
And the response file should have extension ".webm"
@positive @pdftojson
Scenario: Convert PDF to JSON (text editor format)
Given I generate a PDF file as "fileInput"