viewdata.service.spec.ts 367 Bytes
Newer Older
Natthaphong Malaphan's avatar
Natthaphong Malaphan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { TestBed } from '@angular/core/testing';

import { ViewdataService } from './viewdata.service';

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

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

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