You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/authoring/Applicability/ApplicableToComponent.fs
+45-6Lines changed: 45 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -404,19 +404,22 @@ stack: ga 8.8.0, preview 8.1.0
404
404
let``renders GA planned when preview exists alongside GA`` ()=
405
405
markdown |> convertsToHtml """
406
406
<p class="applies applies-block">
407
-
<span class="applicable-info" data-tippy-content="Elastic Stack GA 8.8.0:
408
-
We plan to add this functionality in a future Elastic Stack update. Subject to change.
407
+
<span class="applicable-info" data-tippy-content="<div><strong>Elastic Stack GA 8.8.0:</strong>We plan to add this functionality in a future Elastic Stack update. Subject to change.
409
408
410
-
If this functionality is unavailable or behaves differently when deployed on ECH, ECE, ECK, or a self-managed installation, it will be indicated on the page.
409
+
If this functionality is unavailable or behaves differently when deployed on ECH, ECE, ECK, or a self-managed installation, it will be indicated on the page.</div>
411
410
412
-
Elastic Stack Preview 8.1.0:
413
-
We plan to add this functionality in a future Elastic Stack update. Subject to change.
411
+
<div><strong>Elastic Stack Preview 8.1.0:</strong>We plan to add this functionality in a future Elastic Stack update. Subject to change.
414
412
415
-
This functionality may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.">
413
+
This functionality may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.</div>">
416
414
<span class="applicable-name">Stack</span>
417
415
<span class="applicable-separator"></span>
418
416
<span class="applicable-meta applicable-meta-ga">
419
417
GA planned
418
+
<span class="applicable-ellipsis">
419
+
<span class="applicable-ellipsis__dot"></span>
420
+
<span class="applicable-ellipsis__dot"></span>
421
+
<span class="applicable-ellipsis__dot"></span>
422
+
</span>
420
423
</span>
421
424
</span>
422
425
</p>
@@ -796,3 +799,39 @@ If this functionality is unavailable or behaves differently when deployed on ECH
796
799
</span>
797
800
</p>
798
801
"""
802
+
803
+
// Test multiple lifecycles for same applicability key
804
+
type``multiple lifecycles same key``()=
805
+
static letmarkdown= Setup.Markdown """
806
+
```{applies_to}
807
+
stack: ga 8.0.0, beta 8.1.0
808
+
```
809
+
"""
810
+
811
+
[<Fact>]
812
+
let``renders multiple lifecycles with ellipsis and shows GA lifecycle`` ()=
813
+
markdown |> convertsToHtml """
814
+
<p class="applies applies-block">
815
+
<span class="applicable-info" data-tippy-content="<div><strong>Elastic Stack GA 8.0.0:</strong>Available on Elastic Stack version 8.0.0 and later unless otherwise specified.
816
+
817
+
If this functionality is unavailable or behaves differently when deployed on ECH, ECE, ECK, or a self-managed installation, it will be indicated on the page.</div>
818
+
819
+
<div><strong>Elastic Stack Beta 8.1.0:</strong>We plan to add this functionality in a future Elastic Stack update. Subject to change.
820
+
821
+
Beta features are subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.</div>">
0 commit comments