introduce the vatsim oauth logic

This commit is contained in:
Sven Czarnian
2022-11-01 23:40:45 +01:00
parent bb9044698d
commit 566762a36c
7 changed files with 188 additions and 139 deletions

View File

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