mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 23:01:26 +00:00
testing
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<p>image-format-converter works!</p>
|
||||
@@ -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();
|
||||
});
|
||||
});
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user