diff --git a/ghost/core/package.json b/ghost/core/package.json index 96af430d4f..737d51a12e 100644 --- a/ghost/core/package.json +++ b/ghost/core/package.json @@ -285,6 +285,71 @@ "dependsOn": [ "^build:ts" ] + }, + "test": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:single": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:all": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:unit": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:integration": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:regression": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:browser": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:browser:admin": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:browser:portal": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:e2e": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:ci:e2e": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:ci:regression": { + "dependsOn": [ + "^build:ts" + ] + }, + "test:ci:integration": { + "dependsOn": [ + "^build:ts" + ] } } }