Test CI for type errors

This commit is contained in:
Jared He 2021-11-30 17:35:32 -06:00
parent 5e925e3e59
commit a5236ef033
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ export function getCurrentTerm(): { year: string; term: Term } {
throw new Error("Error setting the current term");
}
return { year, term };
return { year, "Test" };
}
function getPastTerm(year: string, term: Term): { year: string; term: Term } {