Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Update dependency cypress/included to v10 - abandoned #204

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions batect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ containers:
timeout: 1s

cypress:
image: cypress/included:9.7.0
image: cypress/included:10.4.0
volumes:
- local: .
container: /app
Expand All @@ -61,6 +61,6 @@ tasks:
description: Run the Cypress tests.
run:
container: cypress
command: cypress run --config baseUrl=http://app:8352
command: cypress run
dependencies:
- app
7 changes: 7 additions & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const { defineConfig } = require('cypress')

module.exports = defineConfig({
e2e: {
baseUrl: 'http://app:8352'
}
})
1 change: 0 additions & 1 deletion cypress.json

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion cypress/support/index.js → cypress/support/e2e.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ***********************************************************
// This example support/index.js is processed and
// This example support/e2e.js is processed and
// loaded automatically before your test files.
//
// This is a great place to put global configuration and
Expand Down