wongjiahau/ttap-web

View on GitHub
scripts/playground

Summary

Maintainability
Test Coverage
#!/bin/bash 
DIRECTORY="src/core"
if [ -d "$DIRECTORY" ]; then
  echo "yes"
fi
echo "no"

# List all file with test.ts extension and not prefixed with underscore
cd ./ts
ls -lR | grep test.ts | awk -F" " '{print $NF}'| grep "^[^_]"