Updated styling of frontend

This commit is contained in:
grimsi
2022-08-04 21:19:57 +02:00
parent f335d770eb
commit 195981d0f7
15 changed files with 119 additions and 53 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { GamesService } from './games.service';
describe('GamesService', () => {
let service: GamesService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(GamesService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { LibraryService } from './library.service';
describe('LibraryService', () => {
let service: LibraryService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(LibraryService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -1,9 +1,6 @@
import {Injectable} from '@angular/core';
import {GamesApi} from "../api/GamesApi";
import {HttpClient, HttpResponse} from "@angular/common/http";
import {Observable} from "rxjs";
import {DetectedGameDto} from "../models/dtos/DetectedGameDto";
import {GameOverviewDto} from "../models/dtos/GameOverviewDto";
import {LibraryApi} from "../api/LibraryApi";
@Injectable({