Skip to content

Commit

Permalink
Upgrade to Cypress 10.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wimdeblauwe committed Sep 10, 2022
1 parent 895b7c3 commit 0bee070
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,10 @@ The `CYPRESS_RECORD_KEY` environment variable needs to be set for this to work.
|===
|Testcontainers-cypress |Testcontainers | Cypress

|https://github.com/wimdeblauwe/testcontainers-cypress/releases/tag/testcontainers-cypress-1.7.0[1.7.0]
|https://github.com/testcontainers/testcontainers-java/releases/tag/1.17.3[1.17.3]
|https://docs.cypress.io/guides/references/changelog.html#10-7-0[10.7.0]

|https://github.com/wimdeblauwe/testcontainers-cypress/releases/tag/testcontainers-cypress-1.6.3[1.6.3]
|https://github.com/testcontainers/testcontainers-java/releases/tag/1.17.3[1.17.3]
|https://docs.cypress.io/guides/references/changelog.html#9-7-0[9.7.0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class CypressContainer extends GenericContainer<CypressContainer> {
private static final Logger LOGGER = LoggerFactory.getLogger(CypressContainer.class);

private static final String CYPRESS_IMAGE = "cypress/included";
private static final String CYPRESS_VERSION = "9.7.0";
private static final String CYPRESS_VERSION = "10.7.0";

private static final int DEFAULT_PORT = 8080;
private static final String DEFAULT_BASE_URL = "http://host.testcontainers.internal";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CypressContainerTest {
void testDefaultDockerImage() {
try (CypressContainer container = new CypressContainer()) {
container.configure();
assertThat(container.getDockerImageName()).isEqualTo("cypress/included:9.7.0");
assertThat(container.getDockerImageName()).isEqualTo("cypress/included:10.7.0");
assertThat(container.getWorkingDirectory()).isEqualTo("/e2e");
}
}
Expand Down

0 comments on commit 0bee070

Please sign in to comment.