Create test run editor

This commit is contained in:
Takeshi Kimata
2024-04-13 00:18:11 +09:00
parent 5f9d849ee1
commit 4b2608d176
10 changed files with 238 additions and 258 deletions

View File

@@ -79,8 +79,10 @@ app.use("/attachments", attachmentsDownloadRoute);
// "/runs"
const runsIndexRoute = require("./routes/runs/index")(sequelize);
const runsShowRoute = require("./routes/cases/show")(sequelize);
const runsNewRoute = require("./routes/runs/new")(sequelize);
app.use("/runs", runsIndexRoute);
app.use("/runs", runsShowRoute);
app.use("/runs", runsNewRoute);
const PORT = process.env.PORT || 3001;