mirror of
https://github.com/opelly27/WinStudentGoalTracker.git
synced 2026-05-20 01:47:41 +00:00
added components file
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>example works!</p>
|
||||
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Example } from './example';
|
||||
|
||||
describe('Example', () => {
|
||||
let component: Example;
|
||||
let fixture: ComponentFixture<Example>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Example]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Example);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-example',
|
||||
imports: [],
|
||||
templateUrl: './example.html',
|
||||
styleUrl: './example.scss',
|
||||
})
|
||||
export class Example {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user