valtech-components 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/{valtech-components.component.ts → components/hello-world/hello-world.component.ts} +3 -3
- package/src/public-api.ts +1 -2
- package/src/lib/valtech-components.component.spec.ts +0 -23
- package/src/lib/valtech-components.service.spec.ts +0 -16
- package/src/lib/valtech-components.service.ts +0 -9
package/package.json
CHANGED
package/src/lib/{valtech-components.component.ts → components/hello-world/hello-world.component.ts}
RENAMED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
2
|
|
|
3
3
|
@Component({
|
|
4
|
-
selector: '
|
|
4
|
+
selector: 'val-hello-world',
|
|
5
5
|
standalone: true,
|
|
6
6
|
imports: [],
|
|
7
7
|
template: `
|
|
8
8
|
<p>
|
|
9
|
-
|
|
9
|
+
hello-world works!
|
|
10
10
|
</p>
|
|
11
11
|
`,
|
|
12
12
|
styles: ``
|
|
13
13
|
})
|
|
14
|
-
export class
|
|
14
|
+
export class HelloWorldComponent {
|
|
15
15
|
|
|
16
16
|
}
|
package/src/public-api.ts
CHANGED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { ValtechComponentsComponent } from './valtech-components.component';
|
|
4
|
-
|
|
5
|
-
describe('ValtechComponentsComponent', () => {
|
|
6
|
-
let component: ValtechComponentsComponent;
|
|
7
|
-
let fixture: ComponentFixture<ValtechComponentsComponent>;
|
|
8
|
-
|
|
9
|
-
beforeEach(async () => {
|
|
10
|
-
await TestBed.configureTestingModule({
|
|
11
|
-
imports: [ValtechComponentsComponent]
|
|
12
|
-
})
|
|
13
|
-
.compileComponents();
|
|
14
|
-
|
|
15
|
-
fixture = TestBed.createComponent(ValtechComponentsComponent);
|
|
16
|
-
component = fixture.componentInstance;
|
|
17
|
-
fixture.detectChanges();
|
|
18
|
-
});
|
|
19
|
-
|
|
20
|
-
it('should create', () => {
|
|
21
|
-
expect(component).toBeTruthy();
|
|
22
|
-
});
|
|
23
|
-
});
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { TestBed } from '@angular/core/testing';
|
|
2
|
-
|
|
3
|
-
import { ValtechComponentsService } from './valtech-components.service';
|
|
4
|
-
|
|
5
|
-
describe('ValtechComponentsService', () => {
|
|
6
|
-
let service: ValtechComponentsService;
|
|
7
|
-
|
|
8
|
-
beforeEach(() => {
|
|
9
|
-
TestBed.configureTestingModule({});
|
|
10
|
-
service = TestBed.inject(ValtechComponentsService);
|
|
11
|
-
});
|
|
12
|
-
|
|
13
|
-
it('should be created', () => {
|
|
14
|
-
expect(service).toBeTruthy();
|
|
15
|
-
});
|
|
16
|
-
});
|