-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: autocoded msg and error msg align fix and separate autocoded msg #3418
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -647,7 +647,7 @@ | |
} | ||
|
||
&--orig-amount-error { | ||
margin: -68px 4px 48px 33%; | ||
margin: -73px 4px 48px 53%; | ||
} | ||
|
||
&--mandatory { | ||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,30 +1,38 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<form [formGroup]="fg" class="fy-currency--form"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-container fy-currency--currency-block"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--label"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Currency | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<span class="fy-currency--mandatory"> * </span> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-wrapper fy-currency--currency-block"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-container"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--label"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Currency | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<span class="fy-currency--mandatory"> * </span> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<input | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class="fy-currency--input smartlook-show" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(click)="openCurrencyModal()" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
formControlName="currency" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(blur)="onBlur()" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency__auto-coded" *ngIf="currencyAutoCodeMessage"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. use ngIF at the beginning, improves readability. Fix everywhere |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<mat-icon class="fy-currency__sparkle-icon" svgIcon="sparkle"></mat-icon> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{ currencyAutoCodeMessage }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<input | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
class="fy-currency--input smartlook-show" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(click)="openCurrencyModal()" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
formControlName="currency" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(blur)="onBlur()" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-container fy-currency--amount-block" [ngClass]="{ 'fy-currency__invalid': !valid }"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--label"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Amount | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<span class="fy-currency--mandatory"> * </span> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-wrapper fy-currency--amount-block"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--input-container" [ngClass]="{ 'fy-currency__invalid': !valid }"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--label"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Amount | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<span class="fy-currency--mandatory"> * </span> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<app-fy-number placeholder="00.00" formControlName="amount" [isAmount]="true"> </app-fy-number> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency__auto-coded" *ngIf="amountAutoCodeMessage"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<mat-icon class="fy-currency__sparkle-icon" svgIcon="sparkle"></mat-icon> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{ amountAutoCodeMessage }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+3
to
32
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) This HTML structure is like a well-choreographed fight scene! The restructuring improves both visual organization and semantic meaning. But let's make it even more powerful! Add ARIA labels for better screen reader support: - <input
+ <input
+ aria-label="Currency input"
class="fy-currency--input smartlook-show"
(click)="openCurrencyModal()"
formControlName="currency"
(blur)="onBlur()"
/> 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<app-fy-number placeholder="00.00" formControlName="amount" [isAmount]="true"> </app-fy-number> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</form> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency__auto-coded" *ngIf="autoCodeMessage"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<mat-icon class="fy-currency__sparkle-icon" svgIcon="sparkle"></mat-icon> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{{ autoCodeMessage }} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ng-container *ngIf="value?.currency && value?.orig_currency"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="fy-currency--exchange-rate-container" [ngClass]="{ expanded: expanded }"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<mat-icon class="fy-currency--exchange-rate-icon" svgIcon="info-circle-fill"></mat-icon> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -481,47 +481,49 @@ describe('FyCurrencyComponent', () => { | |||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.valid).toBeTrue(); | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set autoCodeMessage to "Currency and Amount are auto coded." when both are auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set currencyAutoCodeMessage to "Currency is auto coded." and amountAutoCodeMessage to "Amount is auto coded." when both are auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.autoCodedData = { currency: 'USD', amount: 100 }; | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.fg = new FormGroup({ | ||||||||||||||||||||||||||||||||||||||||||||||||||
currency: new FormControl('USD'), | ||||||||||||||||||||||||||||||||||||||||||||||||||
amount: new FormControl(100), | ||||||||||||||||||||||||||||||||||||||||||||||||||
homeCurrencyAmount: new FormControl(null), | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.showAutoCodeMessage(); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.autoCodeMessage).toBe('Currency and Amount are auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.currencyAutoCodeMessage).toBe('Currency is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.amountAutoCodeMessage).toBe('Amount is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+484
to
+493
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) Mind-blowing test coverage, macha! But let's make it even more powerful! The test case for both auto-coded fields is solid, but we can enhance it further by verifying the initial state before calling it('should set currencyAutoCodeMessage to "Currency is auto coded." and amountAutoCodeMessage to "Amount is auto coded." when both are auto coded', () => {
component.autoCodedData = { currency: 'USD', amount: 100 };
component.fg = new FormGroup({
currency: new FormControl('USD'),
amount: new FormControl(100),
homeCurrencyAmount: new FormControl(null),
});
+ expect(component.currencyAutoCodeMessage).toBe('');
+ expect(component.amountAutoCodeMessage).toBe('');
component.showAutoCodeMessage();
expect(component.currencyAutoCodeMessage).toBe('Currency is auto coded.');
expect(component.amountAutoCodeMessage).toBe('Amount is auto coded.');
}); 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set autoCodeMessage to "Currency is auto coded." when only currency is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set currencyAutoCodeMessage to "Currency is auto coded." when only currency is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.autoCodedData = { currency: 'USD', amount: 100 }; | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.fg = new FormGroup({ | ||||||||||||||||||||||||||||||||||||||||||||||||||
currency: new FormControl('USD'), | ||||||||||||||||||||||||||||||||||||||||||||||||||
amount: new FormControl(200), | ||||||||||||||||||||||||||||||||||||||||||||||||||
homeCurrencyAmount: new FormControl(null), | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.showAutoCodeMessage(); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.autoCodeMessage).toBe('Currency is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.currencyAutoCodeMessage).toBe('Currency is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+496
to
+504
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick (assertive) These test cases are like my signature moves - precise and powerful! But let's add some style, thalaiva! The test cases cover all scenarios perfectly, but we can make them more maintainable by extracting the message strings into constants. Add these constants at the top of the describe block: describe('FyCurrencyComponent', () => {
+ const AUTO_CODED_MESSAGES = {
+ CURRENCY: 'Currency is auto coded.',
+ AMOUNT: 'Amount is auto coded.',
+ EMPTY: ''
+ };
let component: FyCurrencyComponent;
// ... rest of the code Then update the test cases to use these constants: - expect(component.currencyAutoCodeMessage).toBe('Currency is auto coded.');
+ expect(component.currencyAutoCodeMessage).toBe(AUTO_CODED_MESSAGES.CURRENCY); Also applies to: 507-515, 518-527 |
||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set autoCodeMessage to "Amount is auto coded." when only amount is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set amountAutoCodeMessage to "Amount is auto coded." when only amount is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.autoCodedData = { currency: 'USD', amount: 100 }; | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.fg = new FormGroup({ | ||||||||||||||||||||||||||||||||||||||||||||||||||
currency: new FormControl('EUR'), | ||||||||||||||||||||||||||||||||||||||||||||||||||
amount: new FormControl(100), | ||||||||||||||||||||||||||||||||||||||||||||||||||
homeCurrencyAmount: new FormControl(null), | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.showAutoCodeMessage(); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.autoCodeMessage).toBe('Amount is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.amountAutoCodeMessage).toBe('Amount is auto coded.'); | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set autoCodeMessage to "" when neither currency nor amount is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
it('should set currencyAutoCodeMessage and amountAutoCodeMessage to "" when neither currency nor amount is auto coded', () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.autoCodedData = { currency: 'USD', amount: 100 }; | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.fg = new FormGroup({ | ||||||||||||||||||||||||||||||||||||||||||||||||||
currency: new FormControl('EUR'), | ||||||||||||||||||||||||||||||||||||||||||||||||||
amount: new FormControl(200), | ||||||||||||||||||||||||||||||||||||||||||||||||||
homeCurrencyAmount: new FormControl(null), | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
component.showAutoCodeMessage(); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.autoCodeMessage).toBe(''); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.currencyAutoCodeMessage).toBe(''); | ||||||||||||||||||||||||||||||||||||||||||||||||||
expect(component.amountAutoCodeMessage).toBe(''); | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+484
to
+527
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Listen up, all you test warriors! Here's a power-packed suggestion! We should add one more test case to verify the component's behavior when Add this test case: it('should handle null autoCodedData gracefully', () => {
component.autoCodedData = null;
component.fg = new FormGroup({
currency: new FormControl('USD'),
amount: new FormControl(100),
homeCurrencyAmount: new FormControl(null),
});
component.showAutoCodeMessage();
expect(component.currencyAutoCodeMessage).toBe('');
expect(component.amountAutoCodeMessage).toBe('');
}); |
||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why -ve value?