瀏覽代碼

Remove broken script

Jamie Curnow 1 年之前
父節點
當前提交
a08d18bdb2
共有 1 個文件被更改,包括 0 次插入13 次删除
  1. 0 13
      scripts/test-dev

+ 0 - 13
scripts/test-dev

@@ -1,13 +0,0 @@
-#!/bin/bash -e
-
-DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
-. "$DIR/.common.sh"
-
-# Ensure docker-compose exists
-if hash docker-compose 2>/dev/null; then
-	cd "${DIR}/.."
-	echo -e "${BLUE}❯ ${CYAN}Testing Dev Stack ...${RESET}"
-	docker-compose exec -T npm bash -c "cd /app && task test"
-else
-	echo -e "${RED}❯ docker-compose command is not available${RESET}"
-fi