github.com/argoproj/argo-cd@v1.8.7/ui/src/app/applications/components/__snapshots__/utils.test.tsx.snap (about)

     1  // Jest Snapshot v1, https://goo.gl/fbAQLP
     2  
     3  exports[`ComparisonStatusIcon.OutOfSync 1`] = `
     4  Array [
     5    <i
     6      className="fa fa-arrow-alt-circle-up"
     7      qe-id="utils-sync-status-title"
     8      style={
     9        Object {
    10          "color": "#f4c030",
    11        }
    12      }
    13      title="OutOfSync"
    14    />,
    15    " ",
    16  ]
    17  `;
    18  
    19  exports[`ComparisonStatusIcon.Synced 1`] = `
    20  Array [
    21    <i
    22      className="fa fa-check-circle"
    23      qe-id="utils-sync-status-title"
    24      style={
    25        Object {
    26          "color": "#18BE94",
    27        }
    28      }
    29      title="Synced"
    30    />,
    31    " ",
    32  ]
    33  `;
    34  
    35  exports[`ComparisonStatusIcon.Unknown 1`] = `
    36  Array [
    37    <i
    38      className="fa fa-circle-notch fa-spin"
    39      qe-id="utils-sync-status-title"
    40      style={
    41        Object {
    42          "color": "#CCD6DD",
    43        }
    44      }
    45      title="Unknown"
    46    />,
    47    " ",
    48  ]
    49  `;
    50  
    51  exports[`HealthStatusIcon.Degraded 1`] = `
    52  <i
    53    className="fa fa-heart-broken"
    54    qe-id="utils-health-status-title"
    55    style={
    56      Object {
    57        "color": "#E96D76",
    58      }
    59    }
    60    title="Degraded"
    61  />
    62  `;
    63  
    64  exports[`HealthStatusIcon.Healthy 1`] = `
    65  <i
    66    className="fa fa-heart"
    67    qe-id="utils-health-status-title"
    68    style={
    69      Object {
    70        "color": "#18BE94",
    71      }
    72    }
    73    title="Healthy"
    74  />
    75  `;
    76  
    77  exports[`HealthStatusIcon.Missing 1`] = `
    78  <i
    79    className="fa fa-ghost"
    80    qe-id="utils-health-status-title"
    81    style={
    82      Object {
    83        "color": "#CCD6DD",
    84      }
    85    }
    86    title="Missing"
    87  />
    88  `;
    89  
    90  exports[`HealthStatusIcon.Progressing 1`] = `
    91  <i
    92    className="fa fa fa-circle-notch fa-spin"
    93    qe-id="utils-health-status-title"
    94    style={
    95      Object {
    96        "color": "#0DADEA",
    97      }
    98    }
    99    title="Progressing"
   100  />
   101  `;
   102  
   103  exports[`HealthStatusIcon.Suspended 1`] = `
   104  <i
   105    className="fa fa-heart"
   106    qe-id="utils-health-status-title"
   107    style={
   108      Object {
   109        "color": "#CCD6DD",
   110      }
   111    }
   112    title="Suspended"
   113  />
   114  `;
   115  
   116  exports[`HealthStatusIcon.Unknown 1`] = `
   117  <i
   118    className="fa fa-ghost"
   119    qe-id="utils-health-status-title"
   120    style={
   121      Object {
   122        "color": "#CCD6DD",
   123      }
   124    }
   125    title="Unknown"
   126  />
   127  `;
   128  
   129  exports[`OperationState.Deleting 1`] = `
   130  Array [
   131    <i
   132      className="fa fa-circle-notch fa-spin"
   133      qe-id="utils-operations-status-title"
   134      style={
   135        Object {
   136          "color": "#0DADEA",
   137        }
   138      }
   139      title="Deleting"
   140    />,
   141    " ",
   142    "Deleting",
   143  ]
   144  `;
   145  
   146  exports[`OperationState.Sync OK 1`] = `
   147  Array [
   148    <i
   149      className="fa fa-check-circle"
   150      qe-id="utils-operations-status-title"
   151      style={
   152        Object {
   153          "color": "#18BE94",
   154        }
   155      }
   156      title="Sync OK"
   157    />,
   158    " ",
   159    "Sync OK",
   160  ]
   161  `;
   162  
   163  exports[`OperationState.Sync error 1`] = `
   164  Array [
   165    <i
   166      className="fa fa-times-circle"
   167      qe-id="utils-operations-status-title"
   168      style={
   169        Object {
   170          "color": "#E96D76",
   171        }
   172      }
   173      title="Sync error"
   174    />,
   175    " ",
   176    "Sync error",
   177  ]
   178  `;
   179  
   180  exports[`OperationState.Sync failed 1`] = `
   181  Array [
   182    <i
   183      className="fa fa-times-circle"
   184      qe-id="utils-operations-status-title"
   185      style={
   186        Object {
   187          "color": "#E96D76",
   188        }
   189      }
   190      title="Sync failed"
   191    />,
   192    " ",
   193    "Sync failed",
   194  ]
   195  `;
   196  
   197  exports[`OperationState.Syncing 1`] = `
   198  Array [
   199    <i
   200      className="fa fa-circle-notch fa-spin"
   201      qe-id="utils-operations-status-title"
   202      style={
   203        Object {
   204          "color": "#0DADEA",
   205        }
   206      }
   207      title="Syncing"
   208    />,
   209    " ",
   210    "Syncing",
   211  ]
   212  `;
   213  
   214  exports[`OperationState.Unknown 1`] = `
   215  Array [
   216    <i
   217      className="fa fa-circle-notch fa-spin"
   218      qe-id="utils-operations-status-title"
   219      style={
   220        Object {
   221          "color": "#0DADEA",
   222        }
   223      }
   224      title="Unknown"
   225    />,
   226    " ",
   227    "Unknown",
   228  ]
   229  `;
   230  
   231  exports[`OperationState.quiet 1`] = `null`;
   232  
   233  exports[`OperationState.undefined 1`] = `null`;
   234  
   235  exports[`ResourceResultIcon.Hook.Error 1`] = `
   236  <i
   237    className="fa fa-heart-broken"
   238    style={
   239      Object {
   240        "color": "#E96D76",
   241      }
   242    }
   243  />
   244  `;
   245  
   246  exports[`ResourceResultIcon.Hook.Failed 1`] = `
   247  <i
   248    className="fa fa-heart-broken"
   249    style={
   250      Object {
   251        "color": "#E96D76",
   252      }
   253    }
   254  />
   255  `;
   256  
   257  exports[`ResourceResultIcon.Hook.Running 1`] = `
   258  <i
   259    className="fa fa-circle-notch fa-spin"
   260    style={
   261      Object {
   262        "color": "#0DADEA",
   263      }
   264    }
   265    title="Running: my-message;"
   266  />
   267  `;
   268  
   269  exports[`ResourceResultIcon.Hook.Succeeded 1`] = `
   270  <i
   271    className="fa fa-heart"
   272    style={
   273      Object {
   274        "color": "#18BE94",
   275      }
   276    }
   277  />
   278  `;
   279  
   280  exports[`ResourceResultIcon.Hook.Terminating 1`] = `
   281  <i
   282    className="fa fa-circle-notch fa-spin"
   283    style={
   284      Object {
   285        "color": "#0DADEA",
   286      }
   287    }
   288  />
   289  `;
   290  
   291  exports[`ResourceResultIcon.Pruned 1`] = `
   292  <i
   293    className="fa fa-heart"
   294    style={
   295      Object {
   296        "color": "#CCD6DD",
   297      }
   298    }
   299  />
   300  `;
   301  
   302  exports[`ResourceResultIcon.SyncFailed 1`] = `
   303  <i
   304    className="fa fa-heart-broken"
   305    style={
   306      Object {
   307        "color": "#E96D76",
   308      }
   309    }
   310  />
   311  `;
   312  
   313  exports[`ResourceResultIcon.Synced 1`] = `
   314  <i
   315    className="fa fa-heart"
   316    style={
   317      Object {
   318        "color": "#18BE94",
   319      }
   320    }
   321    title="Synced: my-message"
   322  />
   323  `;