No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
362B

  1. import { TestBed } from '@angular/core/testing';
  2. import { SpotifyService } from './spotify.service';
  3. describe('SpotifyService', () => {
  4. let service: SpotifyService;
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({});
  7. service = TestBed.inject(SpotifyService);
  8. });
  9. it('should be created', () => {
  10. expect(service).toBeTruthy();
  11. });
  12. });