-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
332cf3e
commit 49bbb4d
Showing
5 changed files
with
463 additions
and
5 deletions.
There are no files selected for viewing
Empty file.
Empty file.
23 changes: 23 additions & 0 deletions
23
src/app/components/tower-traverser-visualizer/tower-traverser-visualizer.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { TowerTraverserVisualizerComponent } from './tower-traverser-visualizer.component'; | ||
|
||
describe('TowerTraverserVisualizerComponent', () => { | ||
let component: TowerTraverserVisualizerComponent; | ||
let fixture: ComponentFixture<TowerTraverserVisualizerComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [TowerTraverserVisualizerComponent] | ||
}) | ||
.compileComponents(); | ||
|
||
fixture = TestBed.createComponent(TowerTraverserVisualizerComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
Oops, something went wrong.