Skip to content

Commit

Permalink
Added test back
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremythuff committed Oct 1, 2020
1 parent 7b6ab6c commit c2f2618
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { WvrTabComponent } from './wvr-tab.component';

describe('WvrTabComponent', () => {
let component: WvrTabComponent;
let fixture: ComponentFixture<WvrTabComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [BrowserAnimationsModule],
declarations: [WvrTabComponent],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
.compileComponents();
});

beforeEach(() => {
fixture = TestBed.createComponent(WvrTabComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component)
.toBeTruthy();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ describe('WvrTabsComponent', () => {
expect(component)
.toBeTruthy();
});

});

0 comments on commit c2f2618

Please sign in to comment.