Change
describe('handlers.getSemesters', async () => {
To
describe('handlers.getSemesters', () => {
And then put asynchronous code inside of it block
it('should return an array of Semesters', async () => {
// ...
})
Change
describe('handlers.getSemesters', async () => {
To
describe('handlers.getSemesters', () => {
And then put asynchronous code inside of it block
it('should return an array of Semesters', async () => {
// ...
})