We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ba49f2 commit 8739fbbCopy full SHA for 8739fbb
src/modules/boj/repository.spec.ts
@@ -10,13 +10,11 @@ describe('BojRepository', () => {
10
11
beforeEach(async () => {
12
const module = await Test.createTestingModule({
13
- imports: [HttpModule, ConfigModule.forRoot()],
+ imports: [HttpModule, await ConfigModule.forRoot()],
14
providers: [BojRepository],
15
}).compile();
16
17
repository = module.get<BojRepository>(BojRepository);
18
-
19
- jest.setTimeout(10000);
20
});
21
22
describe('getUserProblems', () => {
@@ -79,6 +77,6 @@ describe('BojRepository', () => {
79
77
expect(user).toHaveProperty('bio');
80
78
expect(user).toHaveProperty('solved');
81
82
- });
+ }, 10000);
83
84
0 commit comments