Initial commmit.

This commit is contained in:
Florian THIERRY
2023-02-21 11:24:06 +01:00
parent 35d68d11e7
commit df1e294172
25 changed files with 1965 additions and 500 deletions

View File

@@ -0,0 +1 @@
<p>promises-example works!</p>

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { PromisesExampleComponent } from './promises-example.component';
describe('PromisesExampleComponent', () => {
let component: PromisesExampleComponent;
let fixture: ComponentFixture<PromisesExampleComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ PromisesExampleComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(PromisesExampleComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-promises-example',
templateUrl: './promises-example.component.html',
styleUrls: ['./promises-example.component.scss']
})
export class PromisesExampleComponent {
}