This repository has been archived on 2026-01-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
frontend/src/app/cookies.service.spec.ts
T
2023-10-15 20:03:11 +02:00

17 lines
362 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { CookiesService } from './cookies.service';
describe('CookiesService', () => {
let service: CookiesService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CookiesService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});