Fix tests

This commit is contained in:
Sander Declerck 2025-07-17 17:15:46 +02:00
parent 87bb095d4f
commit 9476927b87
No known key found for this signature in database
6 changed files with 39 additions and 18 deletions

View file

@ -27,10 +27,10 @@ function setup(tools) {
const startupFile = execAndGetOutput(startupFileCommand, executableName);
teardown();
for (const tool of tools) {
for (const { tool, aikidoCommand } of tools) {
addLineToFile(
startupFile,
`alias ${tool}="aikido-${tool}" # Safe-chain alias for ${tool}`
`alias ${tool}="${aikidoCommand}" # Safe-chain alias for ${tool}`
);
}