feat(frontend): setup

This commit is contained in:
Julian Tölle 2020-01-26 19:07:15 +01:00
parent db62d5d908
commit f14eda16ac
33 changed files with 15076 additions and 22 deletions

View file

@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { FrontendController } from './frontend.controller';
describe('Frontend Controller', () => {
let controller: FrontendController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [FrontendController],
}).compile();
controller = module.get<FrontendController>(FrontendController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});