Implemented test run editor's test case selection

This commit is contained in:
Takeshi Kimata
2024-04-20 17:27:27 +09:00
parent 4a4288d47a
commit 8a4183c98b
6 changed files with 185 additions and 34 deletions

View File

@@ -89,6 +89,12 @@ app.use("/runs", runsNewRoute);
app.use("/runs", runsEditRoute);
app.use("/runs", runDeleteRoute);
// "/runcases"
const runCaseNewRoute = require("./routes/runcases/new")(sequelize);
const runCaseDeleteRoute = require("./routes/runcases/delete")(sequelize);
app.use("/runcases", runCaseNewRoute);
app.use("/runcases", runCaseDeleteRoute);
const PORT = process.env.PORT || 3001;
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);