mirror of
https://github.com/rharkor/caching-for-turbo.git
synced 2025-06-09 09:35:17 +09:00
10 lines
252 B
Bash
Executable file
10 lines
252 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Run the test and capture the output
|
|
npm run test -- --cache=remote:rw | tee test-output.log
|
|
|
|
# Check if the output contains "FULL TURBO"
|
|
if ! grep -q "FULL TURBO" test-output.log; then
|
|
echo "FULL TURBO not found in output"
|
|
exit 1
|
|
fi
|