remove all service validation

This commit is contained in:
Peter Maquiran
2024-10-17 22:31:03 +01:00
parent 2e04ef0b20
commit ddc6ef0265
6 changed files with 13 additions and 43 deletions
@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { CameraService } from './camera.service';
describe('CameraService', () => {
let service: CameraService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CameraService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
@@ -1,9 +0,0 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class CameraService {
constructor() { }
}
@@ -89,7 +89,7 @@ export class NativeNotificationService {
const notifications = [];
console.log({events});
// console.log({events});
events = events
.filter(e => new Date().getTime() <= new Date(e.start).getTime())