Skip to content

Commit

Permalink
[Fleet] Add more cypress test for the agent list page (#156087)
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet authored May 1, 2023
1 parent 61dad95 commit 7588a96
Show file tree
Hide file tree
Showing 6 changed files with 427 additions and 246 deletions.
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

0 comments on commit 7588a96

Please sign in to comment.