chore(api): update dependencies

This commit is contained in:
Julian Tölle 2020-05-02 17:17:20 +02:00
parent 05f230a7ce
commit d881a78757
37 changed files with 4804 additions and 2700 deletions

View file

@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UsersController } from './users.controller';
import { Test, TestingModule } from "@nestjs/testing";
import { UsersController } from "./users.controller";
describe('Users Controller', () => {
describe("Users Controller", () => {
let controller: UsersController;
beforeEach(async () => {
@ -12,7 +12,7 @@ describe('Users Controller', () => {
controller = module.get<UsersController>(UsersController);
});
it('should be defined', () => {
it("should be defined", () => {
expect(controller).toBeDefined();
});
});