Skip to content
Snippets Groups Projects
Unverified Commit b4ef485a authored by Florian Raith's avatar Florian Raith Committed by GitHub
Browse files

Fix e2e tests timeout (#53)

parent 8e298db1
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@ export class Bootstrap {
* Initialize the application.
*/
public async init(): Promise<INestApplication> {
jest.setTimeout(30000);
this.module = await Test.createTestingModule({
imports: [
AppModule,
......
......@@ -3,6 +3,8 @@ import { Bootstrap } from './bootstrap';
import { CreateCategory } from '../src/category/category.dto';
describe('category creation', () => {
jest.setTimeout(30000);
let bootstrap: Bootstrap;
let authCookie: string;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment