parent
5f588d8a69
commit
e9b77a3811
@ -1,25 +1,25 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import {ComponentFixture, TestBed} from "@angular/core/testing";
|
||||||
|
|
||||||
import { DrawerPageContentComponent } from './drawer-page-content.component';
|
import {DrawerPageContentComponent} from "./drawer-page-content.component";
|
||||||
|
|
||||||
describe('DrawerPageContentComponent', () => {
|
describe("DrawerPageContentComponent", () => {
|
||||||
let component: DrawerPageContentComponent;
|
let component: DrawerPageContentComponent;
|
||||||
let fixture: ComponentFixture<DrawerPageContentComponent>;
|
let fixture: ComponentFixture<DrawerPageContentComponent>;
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ DrawerPageContentComponent ]
|
declarations: [DrawerPageContentComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(DrawerPageContentComponent);
|
fixture = TestBed.createComponent(DrawerPageContentComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create', () => {
|
it("should create", () => {
|
||||||
expect(component).toBeTruthy();
|
expect(component).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
|
import {ChangeDetectionStrategy, Component, OnInit} from "@angular/core";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-drawer-page-content',
|
selector: "app-drawer-page-content",
|
||||||
templateUrl: './drawer-page-content.component.html',
|
templateUrl: "./drawer-page-content.component.html",
|
||||||
styleUrls: ['./drawer-page-content.component.scss'],
|
styleUrls: ["./drawer-page-content.component.scss"],
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||||||
})
|
})
|
||||||
export class DrawerPageContentComponent implements OnInit {
|
export class DrawerPageContentComponent implements OnInit {
|
||||||
|
|
||||||
constructor() { }
|
constructor() {
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
import {ComponentFixture, TestBed} from "@angular/core/testing";
|
||||||
|
|
||||||
import { DrawerPageSideComponent } from './drawer-page-side.component';
|
import {DrawerPageSideComponent} from "./drawer-page-side.component";
|
||||||
|
|
||||||
describe('DrawerPageSideComponent', () => {
|
describe("DrawerPageSideComponent", () => {
|
||||||
let component: DrawerPageSideComponent;
|
let component: DrawerPageSideComponent;
|
||||||
let fixture: ComponentFixture<DrawerPageSideComponent>;
|
let fixture: ComponentFixture<DrawerPageSideComponent>;
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
await TestBed.configureTestingModule({
|
await TestBed.configureTestingModule({
|
||||||
declarations: [ DrawerPageSideComponent ]
|
declarations: [DrawerPageSideComponent]
|
||||||
})
|
})
|
||||||
.compileComponents();
|
.compileComponents();
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
fixture = TestBed.createComponent(DrawerPageSideComponent);
|
fixture = TestBed.createComponent(DrawerPageSideComponent);
|
||||||
component = fixture.componentInstance;
|
component = fixture.componentInstance;
|
||||||
fixture.detectChanges();
|
fixture.detectChanges();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create', () => {
|
it("should create", () => {
|
||||||
expect(component).toBeTruthy();
|
expect(component).toBeTruthy();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,16 +1,17 @@
|
|||||||
import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core';
|
import {ChangeDetectionStrategy, Component, OnInit} from "@angular/core";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-drawer-page-side',
|
selector: "app-drawer-page-side",
|
||||||
templateUrl: './drawer-page-side.component.html',
|
templateUrl: "./drawer-page-side.component.html",
|
||||||
styleUrls: ['./drawer-page-side.component.scss'],
|
styleUrls: ["./drawer-page-side.component.scss"],
|
||||||
changeDetection: ChangeDetectionStrategy.OnPush
|
changeDetection: ChangeDetectionStrategy.OnPush
|
||||||
})
|
})
|
||||||
export class DrawerPageSideComponent implements OnInit {
|
export class DrawerPageSideComponent implements OnInit {
|
||||||
|
|
||||||
constructor() { }
|
constructor() {
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue