summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/services/text-to-download.service.spec.ts
blob: f9ff4d29de27559bef59db9736614d7c2bf7aa79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { TestBed } from '@angular/core/testing';

import { configureTestBed } from '~/testing/unit-test-helper';
import { TextToDownloadService } from './text-to-download.service';

describe('TextToDownloadService', () => {
  let service: TextToDownloadService;

  configureTestBed({
    providers: [TextToDownloadService]
  });

  beforeEach(() => {
    service = TestBed.inject(TextToDownloadService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});