e2e-test: make yarn start useful

This commit is contained in:
Patrik Oldsberg
2021-01-20 20:36:41 +01:00
parent 9d1d1138eb
commit a7b1856c8b
+6 -1
View File
@@ -15,7 +15,7 @@
"license": "Apache-2.0",
"main": "src/index.ts",
"scripts": {
"start": "node .",
"start": "nodemon --",
"lint": "backstage-cli lint",
"test": "backstage-cli test",
"test:e2e": "yarn start"
@@ -36,5 +36,10 @@
"tree-kill": "^1.2.2",
"ts-node": "^8.6.2",
"zombie": "^6.1.4"
},
"nodemonConfig": {
"watch": "./src",
"exec": "bin/e2e-test",
"ext": "ts"
}
}