makeopensource / devU

Autograder version 4
10 stars 13 forks source link

Testing failed for category, assignmentScore, and categoryScore Entites #32

Open SantarinX opened 7 months ago

keiferms3 commented 7 months ago

It seems these entities don't have types defined in devU-api/node_modules/devu-shared-modules/types. Each entity's service.ts file has a TS2305 error on the line importing their respective object. For example, line 5 of category.service.ts is:

import { Category } from 'devu-shared-modules'

and has the error:

Module '"devu-shared-modules"' has no exported member 'Category'. ts(2305)

CourseScore is also having the same issue.