Skip to content
Snippets Groups Projects
Commit e6483404 authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Add components answer-statistics

parent 7f6f4ead
No related merge requests found
<p>
answer-statistics works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AnswerStatisticsComponent } from './answer-statistics.component';
describe('AnswerStatisticsComponent', () => {
let component: AnswerStatisticsComponent;
let fixture: ComponentFixture<AnswerStatisticsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AnswerStatisticsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AnswerStatisticsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-answer-statistics',
templateUrl: './answer-statistics.component.html',
styleUrls: ['./answer-statistics.component.scss']
})
export class AnswerStatisticsComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment