mirror of
https://github.com/Aider-AI/aider
synced 2026-04-25 17:15:07 +02:00
14 lines
271 B
Bash
Executable File
14 lines
271 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
# Create symlinks if they don't exist
|
|
[ ! -e node_modules ] && ln -s /npm-install/node_modules .
|
|
[ ! -e package-lock.json ] && ln -s /npm-install/package-lock.json .
|
|
|
|
|
|
sed -i 's/\bxtest(/test(/g' *.spec.js
|
|
npm run test
|
|
|