Ihor Dotsenko
Ihor Dotsenko
Faced this after adding to my `Vagrantfile`: ```diff config.vm.box = 'ubuntu/jammy64' config.vm.provision 'ansible_local' do |ansible| ansible.playbook = 'playbook.yml' + ansible.install_mode = 'pip_args_only' + ansible.pip_args = '-r requirements.txt' end ```
@admah No, it doesn't work. It can be easily reproduced: 1. Create a minimal `cypress.config.ts`: ```ts import { defineConfig } from 'cypress' export default defineConfig({}) ``` 2. Try to run...
This config is also a valid JS code, so I tried to mount it as `mjs`: ```diff -... -v $PWD/cypress.config.ts:/e2e-tests/cypress.config.ts ... +... -v $PWD/cypress.config.ts:/e2e-tests/cypress.config.mjs ... ``` and the error was:...
So, the issue is global: missing `node_modules` in the working dir. We (users) have two possible solutions here: 1. Run a super-slow 🐌 `npm i`/`yarn` before `cypress run` that makes...
@coryasilva If I planned to run `npm i`/`yarn`, I wouldn’t use `cypress/included` 😆
@paul-mesnilgrente I am using the latest for today `capybara (3.33.0)`, `selenium-webdriver (3.142.7)` and official `selenium/standalone-chrome-debug:3.141` container . Everything works perfectly without any tweaks. Did you set up `shm_size` to `2GB`...
@paul-mesnilgrente Well, that's exactly what I was doing yesterday for my self-hosted GitLab :) You need to edit the config of GitLab runner(s). You can find info about both `volumes`...
No, I don't use it but I googled and look like you can configure GitLab runner with Heml Chart the same way as with `config.toml` but with just a bit...
Well, I googled a bit more and looks like you can't configure it with Heml Chart... Happy hacking then 😆
Well, I googled a bit more... You don't have to specify it in Helm Chart config... You use Helm Chart config only to set up the Kubernetes cluster. For configuring...