This commit is contained in:
Bastian Wagner
2024-11-28 12:18:35 +01:00
parent 70c56e4d0b
commit ca7659d5f4
2 changed files with 5 additions and 6 deletions

View File

@@ -19,7 +19,6 @@ jobs:
docker push ghcr.io/wagnerbastian/keyvault_pro_api:latest
build_and_publish_frontend:
runs-on: ubuntu-latest
needs: [test_frontend]
steps:
- uses: actions/checkout@v3
- name: Build and Push Image

View File

@@ -1,15 +1,15 @@
import { Test, TestingModule } from '@nestjs/testing';
import { SystemService } from './system.service';
import { AppService } from './app.service';
describe('SystemService', () => {
let service: SystemService;
describe('AppService', () => {
let service: AppService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [SystemService],
providers: [AppService],
}).compile();
service = module.get<SystemService>(SystemService);
service = module.get<AppService>(AppService);
});
it('should be defined', () => {