Skip to content

Commit 09b1922

Browse files
committed
chore: upgrades cypress from makefile
1 parent 5600ae9 commit 09b1922

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ start:
1515
e2e:
1616
@echo "Running tests..."
1717
docker compose run --rm -e CI=true json-tool npm run test
18-
docker run --network=host --rm -e CYPRESS_BASE_URL=http://localhost:3000 -v $(shell pwd):/app -w /app cypress/included:14.3.0 npm run e2e
18+
docker run --network=host --rm -e CYPRESS_BASE_URL=http://localhost:3000 -v $(shell pwd):/app -w /app cypress/included:15.10.0 npm run e2e
1919

2020
clean:
2121
@echo "Cleaning up..."

cypress.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ module.exports = defineConfig({
2323
return null; // or return a value if needed
2424
},
2525
});
26-
installPlugin(on, config);
26+
if (process.env.ELECTRON_EXTRA_LAUNCH_ARGS) {
27+
installPlugin(on, config);
28+
}
2729
coverage(on, config);
2830
on('file:preprocessor', cucumber());
2931
return config;

0 commit comments

Comments
 (0)