1234567891011121314151617181920212223 |
- import { ComponentFixture, TestBed } from '@angular/core/testing';
- import { PageVibrationMonitor } from './page-vibration-monitor';
- describe('PageVibrationMonitor', () => {
- let component: PageVibrationMonitor;
- let fixture: ComponentFixture<PageVibrationMonitor>;
- beforeEach(async () => {
- await TestBed.configureTestingModule({
- imports: [PageVibrationMonitor]
- })
- .compileComponents();
- fixture = TestBed.createComponent(PageVibrationMonitor);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|