Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Nov 14, 2023
1 parent 10ef7a2 commit c20ff1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/java/itest/RecordingWorkflowTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package itest;

import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -239,6 +240,8 @@ public void testWorkflow() throws Exception {
downloadFile(reportUrl, TEST_RECORDING_NAME + "_report", ".html", headers)
.get(REQUEST_TIMEOUT_SECONDS, TimeUnit.SECONDS);
File reportFile = reportPath.toFile();
MatcherAssert.assertThat(Files.readString(reportPath), Matchers.equalTo(""));

MatcherAssert.assertThat(reportFile.length(), Matchers.greaterThan(0L));

ObjectMapper mapper = new ObjectMapper();
Expand Down

0 comments on commit c20ff1f

Please sign in to comment.