Я использую JEST для модульного тестирования моих экспресс-маршрутов.
Во время выполнения yarn test
все мои тесты проходят, но я получаю ошибку
Jest did not exit one second after the test run has completed.
This usually means that there are asynchronous operations that weren't stopped in your tests. Consider running Jest with `--detectOpenHandles` to troubleshoot this issue.
Я использовал async
& done
, но все равно выдает ошибку выше.
Ниже приведен мой код спецификации.Пожалуйста, помогите
rout.spec.ts
const request = require('supertest');
describe('Test the root path', () => {
const app = require('./index');
test('GET /gql/gql-communication-portal/release-notes', async (done) => {
const response = await request(app).get('/gql/gql-communication-portal/release-notes');
expect(response.status).toBe(200);
done();
});
});