This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from tsheils/development
fix enrichment download, lint and tests
- Loading branch information
Showing
12 changed files
with
31 additions
and
95 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
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
24 changes: 4 additions & 20 deletions
24
...-reaction-classes-from-analytes/features-ramp-reaction-classes-from-analytes.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 |
---|---|---|
@@ -1,34 +1,18 @@ | ||
import { ChangeDetectorRef, Component, OnInit } from "@angular/core"; | ||
import { CommonModule, TitleCasePipe } from "@angular/common"; | ||
import { InputRowComponent } from "@ramp/shared/ramp/input-row"; | ||
import { PageCoreComponent } from "@ramp/shared/ramp/page-core"; | ||
import { QueryPageComponent } from "@ramp/shared/ramp/query-page"; | ||
import { DescriptionComponent } from "@ramp/shared/ui/description-panel"; | ||
import { FeedbackPanelComponent } from "@ramp/shared/ui/feedback-panel"; | ||
import { Component } from "@angular/core"; | ||
import { CommonModule } from "@angular/common"; | ||
|
||
@Component({ | ||
selector: 'lib-features-ramp-reaction-classes-from-analytes', | ||
standalone: true, | ||
imports: [ | ||
CommonModule, | ||
DescriptionComponent, | ||
InputRowComponent, | ||
FeedbackPanelComponent, | ||
QueryPageComponent, | ||
TitleCasePipe, | ||
CommonModule | ||
], | ||
templateUrl: './features-ramp-reaction-classes-from-analytes.component.html', | ||
styleUrl: './features-ramp-reaction-classes-from-analytes.component.scss', | ||
}) | ||
export class FeaturesRampReactionClassesFromAnalytesComponent | ||
extends PageCoreComponent | ||
implements OnInit { | ||
{ | ||
|
||
constructor(private ref: ChangeDetectorRef) { | ||
super(); | ||
} | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
4 changes: 2 additions & 2 deletions
4
libs/features/ramp/reaction-classes-from-analytes/src/test-setup.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment | ||
globalThis.ngJest = { | ||
testEnvironmentOptions: { | ||
errorOnUnknownElements: true, | ||
errorOnUnknownProperties: true, | ||
errorOnUnknownElements: false, | ||
errorOnUnknownProperties: false, | ||
}, | ||
}; | ||
import 'jest-preset-angular/setup-jest'; |
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
26 changes: 4 additions & 22 deletions
26
.../features-ramp-reactions-from-analytes/features-ramp-reactions-from-analytes.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 |
---|---|---|
@@ -1,33 +1,15 @@ | ||
import { ChangeDetectorRef, Component, OnInit } from "@angular/core"; | ||
import { CommonModule, TitleCasePipe } from "@angular/common"; | ||
import { InputRowComponent } from "@ramp/shared/ramp/input-row"; | ||
import { PageCoreComponent } from "@ramp/shared/ramp/page-core"; | ||
import { QueryPageComponent } from "@ramp/shared/ramp/query-page"; | ||
import { DescriptionComponent } from "@ramp/shared/ui/description-panel"; | ||
import { FeedbackPanelComponent } from "@ramp/shared/ui/feedback-panel"; | ||
import { Component } from "@angular/core"; | ||
import { CommonModule } from "@angular/common"; | ||
|
||
@Component({ | ||
selector: 'lib-features-ramp-reactions-from-analytes', | ||
standalone: true, | ||
imports: [ | ||
CommonModule, | ||
DescriptionComponent, | ||
InputRowComponent, | ||
FeedbackPanelComponent, | ||
QueryPageComponent, | ||
TitleCasePipe, | ||
CommonModule | ||
], | ||
templateUrl: './features-ramp-reactions-from-analytes.component.html', | ||
styleUrl: './features-ramp-reactions-from-analytes.component.scss', | ||
}) | ||
export class ReactionsFromAnalytesComponent | ||
extends PageCoreComponent | ||
implements OnInit | ||
{ | ||
constructor(private ref: ChangeDetectorRef) { | ||
super(); | ||
} | ||
export class ReactionsFromAnalytesComponent { | ||
|
||
ngOnInit() { | ||
} | ||
} |
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