-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scaffold new module import subscription details #758
- Loading branch information
Showing
10 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...details/components/import-subscription-details/import-subscription-details.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>import-subscription-details works!</p> |
Empty file.
24 changes: 24 additions & 0 deletions
24
...ails/components/import-subscription-details/import-subscription-details.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
import { buildTestModuleMetadata } from "../../../../spec-helpers"; | ||
import { ImportSubscriptionDetailsComponent } from "./import-subscription-details.component"; | ||
|
||
describe("ImportSubscriptionDetailsComponent", () => { | ||
let component: ImportSubscriptionDetailsComponent; | ||
let fixture: ComponentFixture<ImportSubscriptionDetailsComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule( | ||
buildTestModuleMetadata({ | ||
imports: [ImportSubscriptionDetailsComponent], | ||
}), | ||
).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(ImportSubscriptionDetailsComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it("should create", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
10 changes: 10 additions & 0 deletions
10
...n-details/components/import-subscription-details/import-subscription-details.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ChangeDetectionStrategy, Component } from "@angular/core"; | ||
|
||
@Component({ | ||
selector: "bkd-import-subscription-details", | ||
imports: [], | ||
templateUrl: "./import-subscription-details.component.html", | ||
styleUrl: "./import-subscription-details.component.scss", | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class ImportSubscriptionDetailsComponent {} |
9 changes: 9 additions & 0 deletions
9
src/app/import-subscription-details/import-subscription-details.routes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Routes } from "@angular/router"; | ||
import { ImportSubscriptionDetailsComponent } from "./components/import-subscription-details/import-subscription-details.component"; | ||
|
||
export const IMPORT_SUBSCRIPTION_DETAILS_ROUTES: Routes = [ | ||
{ | ||
path: "", | ||
component: ImportSubscriptionDetailsComponent, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters