Skip to content

Commit

Permalink
fixup! WIP: adding oidc service
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlatz committed Feb 25, 2024
1 parent c04065e commit 71d5709
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions server/src/services/OpenIDConnectService.test.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
// import { Test, TestingModule } from '@nestjs/testing';
// import { OpenIdConnectService } from './OpenIdConnectService';
//
// describe('OpenIDConnectService', () => {
// let service: OpenIdConnectService;
//
// beforeEach(async () => {
// const module: TestingModule = await Test.createTestingModule({
// providers: [OpenIdConnectService],
// }).compile();
//
// service = module.get<OpenIdConnectService>(OpenIdConnectService);
// });
//
// it('should be defined', () => {
// expect(service).toBeDefined();
// });
// });
import { Test, TestingModule } from '@nestjs/testing';
import OpenIdConnectService from './OpenIdConnectService';

describe('OpenIDConnectService', () => {
let service: OpenIdConnectService;

beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [OpenIdConnectService],
}).compile();

service = module.get<OpenIdConnectService>(OpenIdConnectService);
});

it('should be defined', () => {
expect(service).toBeDefined();
});
});

0 comments on commit 71d5709

Please sign in to comment.