Added ability to load benchmark results when viewing a test

This commit is contained in:
2025-06-23 18:05:28 -04:00
parent a83f7e3b0b
commit 175bfa0dfd
5 changed files with 98 additions and 12 deletions

View File

@ -26,8 +26,4 @@ Benchmark.hasMany(Result);
Result.belongsTo(Test);
Test.hasMany(Result);
// Result/Hardware many-to-one
Result.belongsTo(Hardware);
Hardware.hasMany(Result);
module.exports = sequelize;