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/crypto.service.spec.ts
T
2023-10-15 20:03:11 +02:00

17 lines
357 B
TypeScript

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