We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bc3959 commit ca27bbdCopy full SHA for ca27bbd
test/integration/api/admin/api_spec.js
@@ -898,10 +898,13 @@ describe("api", function () {
898
});
899
describe(":ocr", function () {
900
before(async function () {
901
- await uploadImage({
902
- public_id: PUBLIC_ID_OCR_1,
903
- tags: [TEST_TAG]
904
- })
+ this.timeout(TIMEOUT.MEDIUM);
+ await retry(async function() {
+ await uploadImage({
+ public_id: PUBLIC_ID_OCR_1,
905
+ tags: [TEST_TAG]
906
+ });
907
908
909
it("should support requesting ocr when updating", async function () {
910
if (!shouldTestAddOn(ADDON_OCR)) {
0 commit comments