diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f6575855..db367d06 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,7 @@ "ghcr.io/devcontainers/features/docker-in-docker:2": {} }, "postStartCommand": "sudo apt-get update && sudo apt-get install -y fontconfig && sudo apt-get clean", - "postAttachCommand": "nvm use 21.7.1 || nvm install 21.7.1", + "postAttachCommand": "(nvm use 21.7.1 || nvm install 21.7.1) && exit", "customizations": { "vscode": { "extensions": [ diff --git a/docker-compose.yml b/docker-compose.yml index 8dceea56..1e75ffc2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -56,7 +56,7 @@ services: e2e: container_name: tla-e2e - image: cypress/included:13.7.1 + image: cypress/included:13.7.2 working_dir: /e2e volumes: - ./src/test/e2e:/e2e diff --git a/src/test/e2e/package-lock.json b/src/test/e2e/package-lock.json index af647d66..58e6c500 100644 --- a/src/test/e2e/package-lock.json +++ b/src/test/e2e/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "devDependencies": { - "cypress": "^13.7.1", + "cypress": "^13.7.2", "cypress-terminal-report": "^6.0.1", "eslint-plugin-cypress": "^2.15.1" } @@ -623,9 +623,9 @@ } }, "node_modules/cypress": { - "version": "13.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.1.tgz", - "integrity": "sha512-4u/rpFNxOFCoFX/Z5h+uwlkBO4mWzAjveURi3vqdSu56HPvVdyGTxGw4XKGWt399Y1JwIn9E1L9uMXQpc0o55w==", + "version": "13.7.2", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.2.tgz", + "integrity": "sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -3129,9 +3129,9 @@ } }, "cypress": { - "version": "13.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.1.tgz", - "integrity": "sha512-4u/rpFNxOFCoFX/Z5h+uwlkBO4mWzAjveURi3vqdSu56HPvVdyGTxGw4XKGWt399Y1JwIn9E1L9uMXQpc0o55w==", + "version": "13.7.2", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.7.2.tgz", + "integrity": "sha512-FF5hFI5wlRIHY8urLZjJjj/YvfCBrRpglbZCLr/cYcL9MdDe0+5usa8kTIrDHthlEc9lwihbkb5dmwqBDNS2yw==", "dev": true, "requires": { "@cypress/request": "^3.0.0", diff --git a/src/test/e2e/package.json b/src/test/e2e/package.json index 4ba02be3..f8ff95c7 100644 --- a/src/test/e2e/package.json +++ b/src/test/e2e/package.json @@ -1,6 +1,6 @@ { "devDependencies": { - "cypress": "^13.7.1", + "cypress": "^13.7.2", "cypress-terminal-report": "^6.0.1", "eslint-plugin-cypress": "^2.15.1" },