Skip to content
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

[Fleet] Add more cypress test for the agent list page #156087

Merged
merged 10 commits into from
May 1, 2023
8 changes: 7 additions & 1 deletion x-pack/plugins/fleet/common/types/models/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ export interface AgentDiagnostics {
}

// Generated from FleetServer schema.json
/**
* Fleet Server agent component unit
*/
export interface FleetServerAgentComponentUnit {
id: string;
type: 'input' | 'output';
Expand All @@ -190,7 +193,10 @@ export interface FleetServerAgentComponentUnit {
};
}

interface FleetServerAgentComponent {
/**
* Fleet server agent component
*/
export interface FleetServerAgentComponent {
id: string;
type: string;
status: FleetServerAgentComponentStatus;
Expand Down
244 changes: 0 additions & 244 deletions x-pack/plugins/fleet/cypress/e2e/agent_list.cy.ts

This file was deleted.

Loading