mirror of
https://github.com/alibaba/GCanvas.git
synced 2025-12-08 17:36:42 +00:00
6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
for i in `ls examples | grep js`;
|
|
do
|
|
echo "================= Run $i ===============";
|
|
case=$i npm run test;
|
|
done |