This commit is contained in:
danielvici123
2025-12-06 22:58:01 +01:00
parent 0a7586741a
commit 8f029e95d9
8 changed files with 286 additions and 151 deletions

View File

@@ -0,0 +1 @@
<p>image-format-converter works!</p>

View File

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

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-image-format-converter',
imports: [],
templateUrl: './image-format-converter.html',
styleUrl: './image-format-converter.css',
})
export class ImageFormatConverter {
}