WIP: DataSets Module
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>data-set-detail works!</p>
|
||||
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { DataSetDetailComponent } from './data-set-detail.component';
|
||||
|
||||
describe('DataSetDetailComponent', () => {
|
||||
let component: DataSetDetailComponent;
|
||||
let fixture: ComponentFixture<DataSetDetailComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ DataSetDetailComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(DataSetDetailComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-data-set-detail',
|
||||
templateUrl: './data-set-detail.component.html',
|
||||
styleUrls: ['./data-set-detail.component.scss']
|
||||
})
|
||||
export class DataSetDetailComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user