Removed users module.
This commit is contained in:
parent
c8bfeed396
commit
d19c5445d6
@ -1 +0,0 @@
|
|||||||
<p>user-item works!</p>
|
|
@ -1,23 +0,0 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
||||||
|
|
||||||
import { UserItemComponent } from './user-item.component';
|
|
||||||
|
|
||||||
describe('UserItemComponent', () => {
|
|
||||||
let component: UserItemComponent;
|
|
||||||
let fixture: ComponentFixture<UserItemComponent>;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
await TestBed.configureTestingModule({
|
|
||||||
imports: [UserItemComponent]
|
|
||||||
})
|
|
||||||
.compileComponents();
|
|
||||||
|
|
||||||
fixture = TestBed.createComponent(UserItemComponent);
|
|
||||||
component = fixture.componentInstance;
|
|
||||||
fixture.detectChanges();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create', () => {
|
|
||||||
expect(component).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,11 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-user-item',
|
|
||||||
imports: [],
|
|
||||||
templateUrl: './user-item.component.html',
|
|
||||||
styleUrl: './user-item.component.scss'
|
|
||||||
})
|
|
||||||
export class UserItemComponent {
|
|
||||||
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
<p>user-list works!</p>
|
|
@ -1,23 +0,0 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
||||||
|
|
||||||
import { UserListComponent } from './user-list.component';
|
|
||||||
|
|
||||||
describe('UserListComponent', () => {
|
|
||||||
let component: UserListComponent;
|
|
||||||
let fixture: ComponentFixture<UserListComponent>;
|
|
||||||
|
|
||||||
beforeEach(async () => {
|
|
||||||
await TestBed.configureTestingModule({
|
|
||||||
imports: [UserListComponent]
|
|
||||||
})
|
|
||||||
.compileComponents();
|
|
||||||
|
|
||||||
fixture = TestBed.createComponent(UserListComponent);
|
|
||||||
component = fixture.componentInstance;
|
|
||||||
fixture.detectChanges();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create', () => {
|
|
||||||
expect(component).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,11 +0,0 @@
|
|||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-user-list',
|
|
||||||
imports: [],
|
|
||||||
templateUrl: './user-list.component.html',
|
|
||||||
styleUrl: './user-list.component.scss'
|
|
||||||
})
|
|
||||||
export class UserListComponent {
|
|
||||||
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { CommonModule } from '@angular/common';
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [],
|
|
||||||
imports: [
|
|
||||||
CommonModule
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class UsersModule { }
|
|
Loading…
x
Reference in New Issue
Block a user