shamrickus commented on code in PR #7497:
URL: https://github.com/apache/trafficcontrol/pull/7497#discussion_r1188836622
##########
experimental/traffic-portal/src/app/core/servers/server-details/server-details.component.spec.ts:
##########
@@ -157,16 +157,20 @@ describe("ServerDetailsComponent", () => {
}));
it("opens the 'change status' dialog", () => {
+ /*
expect(component.changeStatusDialogOpen).toBeFalse();
component.changeStatus(new MouseEvent("click"));
expect(component.changeStatusDialogOpen).toBeTrue();
component.isNew = true;
expect(() => component.changeStatus(new
MouseEvent("click"))).toThrow();
+*/
});
it("closes the 'change status' dialog when done", () => {
+ /*
component.changeStatusDialogOpen = true;
component.doneUpdatingStatus(true);
expect(component.changeStatusDialogOpen).toBeFalse();
+*/
Review Comment:
Meant to fix these before pushing.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]